我在 Apache-Tomcat 6.0.29 中使用 Struts2.2.1.1 和 sitemesh 2.4.1。它工作正常,但我无法从 siteMesh 中排除文件。
我在 WebContent/jsp/decorators 中有我的装饰器,但我想排除文件 WebContent/jsp/forms/Authentication.jsp。我尝试将此 decorators.xml 与默认 dir = "/jsp/decorators" 一起使用:
<excludes>
<pattern>../forms/Authentication.jsp</pattern>
</excludes>
<decorator name="main" page="layout.jsp">
<pattern>/*</pattern>
</decorator>
我还尝试将模式标记更改为使用 /jsp/forms/Authentication.jsp 并且也没有工作。谁能给我一些正确方向的指示?多谢。
胡安·大卫