I have a requirement to retain the curly brackets from properties file in my rendered JSP code. Is it possible?
I have tried options like: \{
, '{
, {{
, '{'
, /{
, but no help.
At runtime, I get an exception:
java.lang.IllegalArgumentException: can't parse argument number
The problem is that struts processes the {}
as a placeholder for a runtime value. Any help greatly appreciated.
text '{'some text'}' more text
? – Nakisha