In Spring i need to show message in my ftl file. i am using
<@spring.message "property_name">
and the message comes from my properties file.
i need the mssage like
"Message_content_link"
the test link will be a url which will point to another page. i tried like
properties file
message_content=Message_content
message_link=link
ftl file
<@spring.message "message_content" htmlEscaspe="false"><a href="#url_page"><@spring.message "message_link"></a>