Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of packaging springboot into war and deploying to tomcat container

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "the method of deploying springboot into war to tomcat container". The explanation in this article is simple and clear, easy to learn and understand. Please follow the ideas of Xiaobian and go deep into it slowly to study and learn "the method of deploying springboot into war to tomcat container" together!

Step 1: Modify pom.xml to add war

Step 2: Remove tomcat components

org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat

Step 3: introduce servletjar, tomcat related jar

javax.servlet javax.servlet-api 3.1.0 provided org.apache.tomcat tomcat-servlet-api 8.0.36 provided

Step 4: Note that finalName is the name of the project.

org.springframework.boot spring-boot-maven-plugin demo

Step 5: Modify the startup class

import org.springframework.boot.SpringApplication;import org.springframework.boot. autofigure.SpringBootApplication;import org.springframework.boot.builder.SpringApplicationBuilder;import org.springframework.boot.web.support.SpringBootServletInitializer;@SpringBootApplication //spring boot startup public class StartApp extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return builder.sources(StartApp.class); } public static void main(String[] args) { SpringApplication.run(StartApp.class, args); }}

Step 6: Use the maven command mvn clean package to package into war

Then drop war into the webapp directory and start tomcat

Note: modify your tomcat port number oh, the port number configured in the original project configuration file is invalid.

Start tomcat access

Thank you for reading, the above is the "springboot packaged into war deployment to tomcat container method" content, after learning this article, I believe that we have a deeper understanding of the springboot packaged into war deployment to tomcat container method, the specific use of the situation also needs to be verified by practice. Here is, Xiaobian will push more articles related to knowledge points for everyone, welcome to pay attention!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report