当我向http://localhost:8080/..
发送请求时,它完美无缺
但是当我向http://10.68.5.39:8080/..
我收到错误..
IP地址10.68.5.39在Intranet中工作,端口8080正在打开
请参阅..
答案 0 :(得分:3)
在standalone.xml文件中尝试将别名从 localhost 更改为 IP地址
<server name="default-server">
<http-listener name="default" socket-binding="http"/>
<host name="default-host" alias="localhost">
<location name="/" handler="welcome-content"/>
<filter-ref name="server-header"/>
<filter-ref name="x-powered-by-header"/>
</host>
</server>
它对我有用。