Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

which tomcat version is suitable for java 8

Recently, our online web service using tomcat 7.0.23.0 and JVM 1.7.0_51-b13 need to upgrade to java 8, which tomcat version is suitable for java 8 ?

like image 864
philee Avatar asked Oct 21 '17 03:10

philee


People also ask

What version of Java does Tomcat 9 use?

Java 8 required Apache Tomcat 9.0. x requires Java 8 or later.

Is Tomcat 8.0 still supported?

The Apache Tomcat team announces that support for Apache Tomcat 8.0. x will end on 30 June 2018. This means that after 30 June 2018: releases from the 8.0.


3 Answers

See this link

http://tomcat.apache.org/whichversion.html

for details about which tomcat versions are supported on which java versions.

According to that link, tomcat 7.0.23.0 should work on java 8

like image 112
sha Avatar answered Nov 08 '22 15:11

sha


Tomcat 7 is good and works well for Java 8 however, not recommended for Java8 as all features of Java 8 were not supported in tomcat 7. Please use tomcat 9.x with Java 8 (Recommended from Tomcat Apache)

Please refer http://tomcat.apache.org/whichversion.html

like image 31
AMIT ARORA Avatar answered Nov 08 '22 15:11

AMIT ARORA


Latest stable version supported on Java 8 is Tomcat 10 but the users of Tomcat 10 onwards should be aware that, as a result of the move from Java EE to Jakarta EE as part of the transfer of Java EE to the Eclipse Foundation, the primary package for all implemented APIs has changed from javax.* to jakarta.*.

like image 45
Valsaraj Viswanathan Avatar answered Nov 08 '22 15:11

Valsaraj Viswanathan