Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让我的 JBoss Web 应用程序项目登陆一个简单的索引页面。这是一个 Maven 管理的项目。
索引页由客户可以输入名称的表单组成。然后 JAX RS 将客户端名称返回到屏幕。
我不确定我的配置是否正确。
将您的索引页放入src/main/webapp,例如index.html,并将以下内容添加到您的web.xml:
src/main/webapp
index.html
web.xml
<welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list>