我想使用Sitemesh decorators.xml定义特定的URL模式。我想定义一个装饰器,它匹配以"/story/_NUMBER_"
结尾的所有以装饰者为目标的URL。我试过了:
<decorator name="customMain" page="customMain.jsp">
<pattern>/story/[0-9]+</pattern>
</decorator>
但这不起作用..正则表达式在decorators.xml中有效吗?如果没有,我如何定位以上述模式结尾的网址?