I am trying to include the library StringEscapeUtils and everything that I can find indicates that I can import the Apache Org page as follows:
<%@ page import="org.apache.commons.lang.StringEscapeUtils" %>
however, I can only resolve the URL down to this:
<%@ page import="org.apache.commons.*" %>
and when I do that, the compile still cannot resolve StringEscapeUtils
.
What am I doing wrong?