I have saved some basic HTML in a database. This HTML is via ValueStack
in Action
class redisplayed as <s:property value="htmlcodeString"/>
in JSP file.
However, the HTML code is not interpreted, but escaped and displayed as is (eg. <b>BOLD</b> is shown instead of BOLD).
I am using Struts2. I found many recommendations on internet to use <c:out value="${text}" escapeXml="false" />
. But I don't know what it is. How can I make use of it in Struts2?