On 14/07/2010 21:25, Beto wrote: > > After fixing that, I'm getting another exception(the same one) because > I'm mixing local and global [3] properties file in border-template.htm > file. Click is trying to find a global key in the local properties > file: > [QUOTE] > java.util.MissingResourceException: Message "webapp.name" not found in > bundle "park.web.page.HomePage" for locale "pt_BR" > at org.apache.click.util.MessagesMap.get(MessagesMap.java:176) > [/QUOTE] > > Any advice here?
This scenario is supported by Click's message lookup strategy[1]. Click looks up the message in the parent bundle and if not found checks in the local bundle before throwing an exception. So it seems the click-page.properties is not in the WAR classes folder? Kind regards Bob [1]: http://click.apache.org/docs/user-guide/html/ch02s11.html
