0
我想使用Sitemesh decorators.xml來定義特定的URL模式。我想定義一個裝飾器,它匹配所有以"/story/_NUMBER_"
結尾的URL,並由裝飾器定位。我嘗試過:使用裝飾器匹配模式
<decorator name="customMain" page="customMain.jsp">
<pattern>/story/[0-9]+</pattern>
</decorator>
但是這不起作用..正則表達式在decorators.xml中工作嗎?如果不是,我該如何定位以上述模式結束的URL?