We are using the spring:message tag in a project with Sitemesh 2. When using the spring:message in the decorator than the -tag isn't recognized. We can use the -tag in our jsp pages but in the decorator jsp file.
<?xml version="1.0" encoding="UTF-8"?>
<excludes/>
<page-parsers>
<parser content-type="text/html" encoding="UTF-8" class="com.opensymphony.module.sitemesh.parser.FastPageParser" />
</page-parsers>
<decorator-mappers>
<mapper class="com.opensymphony.module.sitemesh.mapper.ConfigDecoratorMapper">
<param name="config" value="${decorators-file}" />
</mapper>
</decorator-mappers>
If we use the deprecated parser FastPageParser than there is no problem, but when using the new HTMLPageParser than is doesn't work.
How can we solve this?
Works fine for me on decorators using FastPageParser.
A couple of things to check..
Are you including the springframework and sitemesh taglibs on your decorators?
I'm not sure if it will make a difference to the filter chain, but I'm using a custom configdecorator mapper that chooses the decorator based on a layout set in the request scope.
So in sitemesh.xml:
CustomConfigDecoratorMapper look's like this:
Other than that.. have you considered using fmt:message instead?