I'm having trouble because of the escape string issue.
The value stated in action is like below:
myVo.title = "[M&M]Title";
And I want to use it in JSP like below:
<s:textfield name="title" id="title" value="%{myVo.title}" />
but what I got is this:
I searched about this problem, but I got no clear answer.
There're some attributes for escape issue like escape/ecapeHtml/escapeXml
but those all are for property tag, not for textfield tag.
How can I solve this problem?
Any comment would be appreciated. Thanks.