Re: T5: Newbie question - using a variable and replace it with a property

2007-10-01 Thread jblier
Thanks for your quick answer. I changed the "App.properties" file name to "app.properties" and it works. It looks like to be case sensitive. Chris Lewis-5 wrote: > > Whatever your app/context name is (by default its App as created by the > quickstart), create an App.properties file in WEB-INF

Re: T5: Newbie question - using a variable and replace it with a property

2007-10-01 Thread Chris Lewis
Whatever your app/context name is (by default its App as created by the quickstart), create an App.properties file in WEB-INF. Assuming you've done that and you have your "applicationTitle" message, access it in templates using the "message" binding prefix: ${message:applicationTitle} ...