带有前缀“javaee:”的标记与web.xml中的“javaee:”之间的区别是什么?

时间:2016-11-10 08:14:31

标签: java xml tomcat xml-namespaces

作为标题,标签前缀为“javaee:”而不是“javaee:”。

我发现我们需要使用不带“javaee:”的标记来设置配置,带有前缀“javaee:”的标记不起作用

例如:

<welcome-file-list>
    <welcome-file>default.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
</welcome-file-list>

作品

<javaee:welcome-file-list>
    <javaee:welcome-file>default.jsp</javaee:welcome-file>
    <javaee:welcome-file>default.html</javaee:welcome-file>
</javaee:welcome-file-list>

不起作用。

我使用tomcat 8.5.6作为服务器。

下面是我的web.xml:          

<web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xml="http://www.w3.org/XML/1998/namespace" 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_3_0.xsd ">
    <display-name>SQUEEN WECHAT</display-name>

    <welcome-file-list>
        <welcome-file>default.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
    </welcome-file-list>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            WEB-INF/config/spring/applicationContext.xml
        </param-value>
    </context-param>

    <context-param>
        <param-name>log4jConfigLocation</param-name>
        <param-value>WEB-INF/config/log4j.properties</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.springframework.web.util.Log4jConfigListener
        </listener-class>
    </listener>

    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
</web-app>

1 个答案:

答案 0 :(得分:1)

请阅读以下xml命名空间。这是xml的基础知识。

enter image description here

如果声明如下所示,在 web.xml 中:

<web-app  xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">

你可以在没有命名空间的情况下编写以下内容。

<welcome-file-list>
    <welcome-file>default.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
</welcome-file-list>

如果 web.xml 如下所示,其具有自定义命名空间声明

注意:xmlns:javaee ):

<web-app  xmlns:javaee="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">

你必须用命名空间编写相同的内容,如下所示:

<javaee:welcome-file-list>
    <javaee:welcome-file>default.jsp</javaee:welcome-file>
    <javaee:welcome-file>default.html</javaee:welcome-file>
</javaee:welcome-file-list>

这就是xml如何工作的方式。没别了。