On 04/02/2021 05:04, [email protected] wrote: > Hi Folks! Another wild and crazy question. > > So, Tomcat 10.0.2. I see that it uses Jakarta EE 9, and the README states it > requires at least Java 8. So, will it run just fine on Java 1.8x or does the > Jakarta EE 1.9 have to be installed?
You only need Java 8. There is no such thing as Jakarta EE 1.9. Jakarta EE 9 is a collection of APIs and specifications for how those APIs are expected to behave. Tomcat implements a subset of those specifications and APIs (Servlet, WebSocket, EL, Server Pages, Authentication and Annotations). Note that you cannot take an application that works on Tomcat 9 and use it unchanged on Tomcat 10 because in the move from Java EE 8 (Tomcat 9) to Jakarta EE 9 (Tomcat 10) the java package name used by all the APIs changed from javax... to jakarta... The Tomcat community has provided a migration tool that converts applications from Java EE 8 to Jakarta EE 9: https://github.com/apache/tomcat-jakartaee-migration HTH, Mark > > Thanks, > > Dream * Excel * Explore * Inspire > Jon McAlexander > Infrastructure Engineer > Asst Vice President > > Middleware Product Engineering > Enterprise CIO | Platform Services | Middleware | Infrastructure Solutions > > 8080 Cobblestone Rd | Urbandale, IA 50322 > MAC: F4469-010 > Tel 515-988-2508 | Cell 515-988-2508 > > [email protected]<mailto:[email protected]> > > Upcoming PTO: 10/30/2020, 11/6/2020, 11/13/2020, 11/20/2020, 11/27/2020, > 12/2/2020, 12/4/2020, 12/11/2020, 12/18/2020, 12/28/2020, 12/29/2020, > 12/30/2020, 12/31/2020 > This message may contain confidential and/or privileged information. If you > are not the addressee or authorized to receive this for the addressee, you > must not use, copy, disclose, or take any action based on this message or any > information herein. If you have received this message in error, please advise > the sender immediately by reply e-mail and delete this message. Thank you for > your cooperation. > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
