I have a properties file containing several key value pairs, I need to display one at a time, based on the request, some of the messages have links in them. I'm unsure how to implement links inside properties file, because in my
jsp, I'm using struts2.0 to retrieve the value... when I read the value, ,I see the entire content on the jsp, not the link....
sample.properties
key1 = here is the <a href="sample.html">link</a>
in jsp
<s: property value="getValue()"/>
the final output :
here is the <a href="sample.html">link</a>
Any help is appreciated.
TIA