我部署了一个test.war,并且日志表示没有错误,它会在部署/时自动生成一个test.war.deployed。 我只有一个要测试的index.jsp,但浏览器显示:
HTTP Status 404 - /test/
type Status report
message /test/
description The requested resource (/test/) is not available.
这是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5"> </web-app>
这是我的jboss-web.xml:
<?xml version="1.0" encoding="UTF-8"?> <jboss-web>
<context-root>/test</context-root> </jboss-web>
我错过了什么?
答案 0 :(得分:0)
我使用Tapestry 5应用程序遇到了这个问题。如果您的应用程序是基于Tapestry的,您可以在此处找到解决方案:http://wiki.apache.org/tapestry/HowToRunTapestry5OnJBoss7Dot1。