tags: springboot tomcat version
From the following URL:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-tomcat/1.5.17.RELEASE

You can see that the corresponding embedded version is 8.5.34.
Join me now to upgrade to 8.5.51:
1.pom.xml configuration properties
<properties>
<tomcat.version>8.5.51</tomcat.version>
</properties>
2. Add dependency
<!--Specify the embedded tomcat version-->
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-juli</artifactId>
<version>${tomcat.version}</version>
</dependency>
You can see from the startup log that tomcat has been replaced with a new version:

Springboot embedded tomcat integrated jsp jar version application.properties Project structure Complete pom.xml version: jdk 1.8 maven 3.5 springBoot 1.5.6.RELEASE After using springBoot to build a go...
Specify the JDK version tomcat runtime windows 1. Modify the tomcat file /bin/catalina.sh export JAVA_HOME = JDK path accession 1, extract the downloaded Tomcat; 2, setclasspath.bat locate the file in...
[Vulnerability Notice] Due to the Springboot version used in the project, it comes from 2.9.8, which is 2.9.8, below the secure version. 2.9.10.6, so you need to upgrade Jackson version. Modify the Ja...
First, view the file version by tomcat Find tomcat directory, enter "xxx / tomcat / bin" directory, execute "sh version.sh". If you do not set the environment variable JAVA_HOME an...
Sometimes it is necessary to upgrade the tomcat version to solve the scanned vulnerability problem After downloading the tomcat package, it can be used directly after decompression. Enter tomcat's bin...
Sometimes I want to check the tomcat version used, but I find that there is no detailed version number in the folder name At this time, we only need to find catalina.jar under the tomcat9 folder and u...
View Tomcat version show: Using CATALINA_BASE: /root/tools/tomcat Using CATALINA_HOME: /root/tools/tomcat Using CATALINA_TMPDIR: /root/tools/tomcat/temp Using JRE_HOME: /usr Using CLASSPATH: /root/too...
Generally in the operation and maintenance scenario, the server is installed with JDK and then configures the environment variable. Multiple Tomcat will quote JDK in the default environment variables ...
Linux start tomcat and specify jdk version Find the location of tomcat and locate it under bin/ and assign execute permission Modify the setclasspath.sh and catalina.sh files Start startup.sh Find the...
When a machine has multiple systems, the required Java environment may be inconsistent. In this case, we need to specify the tomcat environment of a certain system as the specified java version, but d...