I have a requirement to save curly braces from a properties file in my processed JSP code. Is it possible?
I tried to options such as: \{, '{, {{, '{', /{, but without help.
At runtime, I get an exception:
java.lang.IllegalArgumentException: cannot parse argument number
The problem is that struts processes {}as a placeholder for the runtime value. Any help was greatly appreciated.
source
share