sitemesh 3排除根路径

时间:2014-09-12 06:35:12

标签: spring-mvc sitemesh

当我访问localhost:8080时,我想获得未装饰的index.html。 当我访问localhost:8080 / admin时,我希望所有页面都被装饰。

我的配置是

<?xml version="1.0" encoding="UTF-8"?>
<sitemesh>
  <!--   <mapping path="/" exclude="true"/> not work -->
<mapping path="/index.html" exclude="true"/>
<mapping path="/assets/*" exclude="true"/>  
<mapping path="/admin*" decorator="/WEB-INF/decorators/decorator.html"/>
</sitemesh>
除非我访问localhost:8080:index.html

,否则

index.html不会被修饰

1 个答案:

答案 0 :(得分:0)

添加MIME TYPE As(mime-type)text / jsp(/ mime-type)。

<mapping path="/" exclude="true"/>

请用'&lt;'替换括号&安培; '&GT;'分别。

这肯定会有用。