用于包含页眉和页脚的Tomcat web.xml jsp-config

时间:2017-07-28 09:01:37

标签: java tomcat

在我在Tomcat上运行的JavaEE应用程序中,我有一些页面可供任何人访问(用于登录,注册,...)在app-context的根目录中,以及一些你必须登录的页面。这些页面映射到“APP-CONTEXT”/ app / *。 我想要的是为/ app下的所有页面自动包含页眉和页脚。 我已经读过可以通过在web.xml文件下设置include-prelude / coda但它对我不起作用...

这是我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" 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">
    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>connexion</welcome-file>
    </welcome-file-list>
    <jsp-config>
        <jsp-property-group>
            <url-pattern>*.jsp</url-pattern>
            <url-pattern>*.jspf</url-pattern>
            <el-ignored>false</el-ignored>
            <include-prelude>/WEB-INF/jspf/taglibs.jspf</include-prelude>
        </jsp-property-group>
        <jsp-property-group>
            <url-pattern>/app/*</url-pattern>
            <include-prelude>/WEB-INF/jspf/header.jspf</include-prelude>
            <include-coda>/WEB-INF/jspf/footer.jspf</include-coda>
        </jsp-property-group>
    </jsp-config>
</web-app>

我在tomcat的日志中没有错误,页眉和页脚的路径有效,但屏幕上没有任何内容...... 另外,是否可以使用url-pattern匹配文件夹下的特定ext(如/app/*.jsp)?

0 个答案:

没有答案