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

Analysis of the process of using external tomcat in springboot Project

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly explains the "springboot project using external tomcat process analysis", the content of the article is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in-depth, together to study and learn "springboot project using external tomcat process analysis" bar!

Add dependencies in the pom file

Org.springframework.boot spring-boot-starter-tomcat provided

Create a new startup class SpringBootStartApplication under the same directory as the Application startup class that comes with Springboot

Package com.huang;import org.springframework.boot.builder.SpringApplicationBuilder;import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;// makes the class inherit springboot's SpringBootServletInitializerpublic class SpringBootStartApplication extends SpringBootServletInitializer {@ Override protected SpringApplicationBuilder configure (SpringApplicationBuilder application) {/ / find the original startup class return application.sources (WebchatApplication.class);}}

# the directory is as follows: src |-main |-java |-com.huang.sockerservice |-WebchatApplication.class # original startup class |-SpringBootStartApplication.class # New startup class |-resources

Thank you for your reading, the above is the content of "the process analysis of springboot project using external tomcat". After the study of this article, I believe you have a deeper understanding of the process analysis of springboot project using external tomcat, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

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

Development

Wechat

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

12
Report