ESAPI 2.2.0.0 DisplayTag 1.2 initialize class error #732
-
Updating from ESAPI 2.1.0.1 to 2.2.0.0 the below error occurs. The jar is in the WEB-INF/lib when packaged so im not sure if there is another dependency I am missing. Thanks [https-openssl-apr-10.10.10.101-9443-exec-1] org.apache.catalina.core.ApplicationDispatcher.invoke Servlet.service() for servlet [jsp] threw exception |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
There are several dependency updates between the two esapi versions you're listing, and a few dependencies were entirely removed/replaced. My guess is that there was a transitive dependency on one of the removed dependencies, or an older version of the dependency, that is no longer packaged as part of the library. Roll the esapi library version back and use the maven dependency plugin to identify content you depend on that you are not specifying in your pom.
For any content identified as used and undeclared, add a declaration to your project. (Your project needs it so you should own it) After you've addressed all of those, you should be able to update esapi to the new version. |
Beta Was this translation helpful? Give feedback.
There are several dependency updates between the two esapi versions you're listing, and a few dependencies were entirely removed/replaced.
My guess is that there was a transitive dependency on one of the removed dependencies, or an older version of the dependency, that is no longer packaged as part of the library.
Roll the esapi library version back and use the maven dependency plugin to identify content you depend on that you are not specifying in your pom.
mvn dependency:analyze
For any content identified as used and undeclared, add a declaration to your project. (Your project needs it so you should own it)
After you've addressed all of those, you should be able to update esapi to the n…