What I see is with tomcat 9 doc "JspContextWrapper" has a new parameter "JspTag jspTag" and tomcat 7 does not have the New parameter
I have made sure no multiple jar versions are loaded.
Below is the exception i am getting.
Caused by: java.lang.NoSuchMethodError: org.apache.jasper.runtime.JspContextWrapper.<init>(Ljavax/servlet/jsp/JspContext;Ljava/util/ArrayList;Ljava/util/ArrayList;Ljava/util/ArrayList;Ljava/util/Map;)V
at org.apache.jsp.tag.webhelp_tag.setJspContext(webhelp_tag.java:38)
Alternatively, I was able to bring in the tablib change inline inside the jsp which was failing, and remove @tablib it works. But want to know if someone has faced this issue and making changes in all JSP's, I feel is not a simple approach.