jboss虚拟主机和上下文根

wpcxdonn  于 2021-08-20  发布在  Java
关注(0)|答案(0)|浏览(259)

在我的jboss-web.xml中

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web version="8.0" xmlns="http://www.jboss.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee http://www.jboss.org/schema/jbossas/jboss-web_8_0.xsd">
    <context-root>SampleSpringBoot</context-root>
    <virtual-host>SampleSpringBoot</virtual-host>
</jboss-web>

standalone.xml

<host name="default-host" alias="localhost">
                    <location name="/" handler="welcome-content"/>
                    <filter-ref name="server-header"/>
                    <filter-ref name="x-powered-by-header"/>
                    <http-invoker security-realm="ApplicationRealm"/>
                </host>
    <host name="SampleSpringBoot" alias="123.mydomain.com" default-web-module="SampleSpringBoot.war"/>

当我访问“123.mydomain.com”时,我可以查看应用程序索引页面。
当我访问“http://localhost:8080/samplespringboot“,它不工作404返回
我试过了

<host name="SampleSpringBoot" alias="123.mydomain.com, SampleSpringBoot" default-web-module="SampleSpringBoot.war"/>

同样的404重播
如何在本地访问url?
谢谢

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题