I chose option 1 and re-wrote everything. It was fun ________________________________________________
Kevin Huntly Email: kmhun...@gmail.com Cell: 716/424-3311 ________________________________________________ -----BEGIN GEEK CODE BLOCK----- Version: 1.0 GCS/IT d+ s a C++ UL+++$ P+(++) L+++ E--- W+++ N+ o K(+) w--- O- M-- V-- PS+ PE Y(+) PGP++(+++) t+ 5-- X-- R+ tv+ b++ DI++ D++ G++ e(+) h--- r+++ y+++* ------END GEEK CODE BLOCK------ On Thu, Apr 20, 2023 at 12:48 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > Kevin, > > On 4/17/23 17:56, Kevin Huntly wrote: > > I'm getting the following exception when I try to access my webapp: > > > > 17-Apr-2023 17:52:55.982 SEVERE [catalina-exec-1] > > org.apache.catalina.core.ApplicationDispatcher.invoke Servlet.service() > for > > servlet [jsp] threw exception > > java.lang.ClassNotFoundException: > > javax.servlet.jsp.tagext.TagLibraryValidator > > > You are trying to deploy a Java EE application onto a Jakarta EE server. > > You have a few options: > > 1. Re-write your application. (Best long-term strategy) > 2. Run the Tomcat Migration Tool on your application (WAR/dir) and > deploy that on to Tomcat 10.1 or later > 3. Put your application WAR/dir into Tomcat's "legacyAppBase" directory > for your <Host> (defaults to "webapps-javaee" next to the "webapps" > auto-deploy directory) > > As for this: > > On 4/17/23 19:18, Kevin Huntly wrote: > > Is there a way to get Eclipse to stop complaining about missing > > "javax.servlet.*" dependencies? It's complaining on every JSP I > > have... > Every JSP you have is broken, and Eclipse is telling you that. You have > to basically globally search-and-replace "javax.servlet" with > jakarta.servlet" in your whole application. > > -chris > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org > For additional commands, e-mail: users-h...@tomcat.apache.org > >