I have an object field with the name of the person.
If I use $ {person.lastName}, I get O'Brian
If i use
<c:out value="${person.lastName}"/>
I get OBrian
Both outputs break the following jsp code in IE
<a href="#"
class="delete"
onclick="if(confirm('<c:out value="${application.lastName}"/> ' + _('Are you sure you want to delete this application?'))) {deleteApplication('${application.identifier}')};return false;"><bean:message key="application.delete"/></a>
because it is converted to
onclick="if(confirm('O'Brian '
or
onclick="if(confirm('O'Brian '
I need O'Brian to be escaped as O \ 'Brian
Any idea how to solve this problem?
DECISION
Most elegant solutions seem to use a simple tag.
package view;
import java.io.IOException;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.SimpleTagSupport;
public class EscapeJS extends SimpleTagSupport {
public String str;
public void doTag() throws JspException, IOException {
getJspContext().getOut().print(str.replaceAll("\'", "\\\\'"));
}
public String getStr() {
return str;
}
public void setStr(String str) {
this.str = str;
}
}
Then put the utils.tld file in WEB-INF:
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
<taglib>
<tlibversion>1.2</tlibversion>
<jspversion>1.1</jspversion>
<shortname>bean</shortname><uri>utilsTags</uri>
<uri>utilsTags</uri>
<tag>
<name>escapeJS</name>
<tagclass>view.EscapeJS</tagclass>
<bodycontent>scriptless</bodycontent>
<attribute>
<name>str</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
</taglib>
Then inside your jsp:
<%@ taglib prefix="utils" uri="utilsTags" %>
<utils:escapeJS str="${application.firstName}"/>
source
share