Hi, On 14/07/2010 05:02, Beto wrote: > > And try to define these (meta.heading, meta.menu) in the correspondent > click page, but how can I set/get those HEAD elements in java page?
Create a custom Element called MetaElement that renders your meta tags. In your Page add MetaElement through getHeadElements().add(meta). > Other thing, what's the correspondent in velocity to this jstl : > <c:url value='/?locale=en'/> You want a link the root of your webapp? Do this: <a href='/?local=en'>English</a> Regards Bob
