我有這個非常簡單的web.xml文件:當我不使用全局名稱空間時,爲什麼web.xml不起作用?
<?xml version="1.0" encoding="UTF-8" ?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<welcome-file-list>
<welcome-file>testx.jsp</welcome-file>
</welcome-file-list>
</web-app>
當我部署應用程序和訪問上下文根,我將採取testx.jsp這是罰款。但在我的web.xml文件,我不希望使用一個全局命名空間,所以我改變了web.xml如下:
<?xml version="1.0" encoding="UTF-8" ?>
<ee:web-app xmlns:ee="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<ee:welcome-file-list>
<ee:welcome-file>testx.jsp</ee:welcome-file>
</ee:welcome-file-list>
</ee:web-app>
現在,當我重新啓動Tomcat,訪問該頁面,我會發現自己在/索引而不是/testx.jsp。但爲什麼?
我正在將應用程序部署到Tomcat服務器。我嘗試了Glassfish,但沒有遇到這個問題。我想這是一個Tomcat問題?
爲什麼會在默認情況下關閉? – 2014-11-04 06:57:17