问题描述
现在在IDE上开发好的项目可以部署在jboss的default文件夹下。访问的路径是 http://xxx.xxx.xxx/xxx才能访问,如何配制才能按照 http://xxx.xxx.xxx/ 访问呢?
解决方案
在WEB-INF下加入jboss-web.xmljboss-web.xml的内容为:<jboss-web> <context-root>/</context-root> </jboss-web>
解决方案二:
<jboss-web> <context-root>/</context-root> <virtual-host>localhost</virtual-host></jboss-web>少了红色的部分
时间: 2024-12-02 20:44:49