Prepare war package1. Prepare the existing SpringBoot project and add dependencies in pom1) Set the packaging format to war <packaging>war</packaging> 2) Exclude the tomcat embedded in SpringBoot <!-- When deploying in war package, you need to exclude the embedded tomcat --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency> 3) Configure plugin From the original <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> Configure <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> <!-- Add jvm parameters --> <jvmArguments>Dfile.encoding=UTF-8</jvmArguments> <!-- Specify the entry class --> <mainClass>com.peko.filemanager.Application</mainClass> </configuration> </plugin> </plugins> </build> 2. Configure the startup classFrom the original @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } Configure @SpringBootApplication public class Application extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return builder.sources(Application.class); } } 3. Packaging with Maven ToolsClean first, then package After success, you can find the packaged war package in the target folder Copy it and then change the name. Here I changed it to helloworld.war Deploy to tomcat on centos1. First, install tomcathttps://blog.csdn.net/piano_diano/article/details/116938060 2. Upload the war package to tomcat/webapps using the sftp toolRestart tomcat
Then open the tomcat management interface You can see that the project is in the startup state. If it is in the shutdown state, go to the log under tomcat/logs to see what error is reported.
helloworld project address: https://gitee.com/ShyHour/hello-world The above is the details of using tomcat to deploy SpringBoot's war package in the centos environment. For more information about tomcat deploying SpringBoot's war package, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Modify the style of HTML body in JS
>>: The concept and characteristics of MySQL custom variables
I have recently learned web development front-end...
Table of contents Preface Error Object throw try…...
This article example shares the specific code of ...
Table of contents 1. Introduction 2. Thought Anal...
The tbody element should be used in conjunction wi...
Table of contents this Method In the object Hidde...
Because of network isolation, MySQL cannot be ins...
Demand background The team has the need for integ...
When implementing this function, the method I bor...
How to view linux files Command to view file cont...
Table of contents Linux-Use MyCat to implement My...
First, let’s look at the GIF operation: Case 1: S...
Table of contents System update configuration Cha...
Rendering If you want to achieve the effect shown...
Preface Recently, I took over a client's nati...