idea使用外置tomcat配置springboot详细步骤

  • 创建一个maven项目
  • 导入springboot依赖,注意底下注释部分
4.0.0com.znsd.springbootspringboot-jsp1.0-SNAPSHOTwarorg.springframework.bootspring-boot-starter-parent2.3.12.RELEASE org.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-starter-tomcatprovidedorg.springframework.bootspring-boot-starter-testtestorg.junit.vintagejunit-vintage-engineorg.springframework.bootspring-boot-maven-plugin

idea使用外置tomcat配置springboot详细步骤
文章图片

idea使用外置tomcat配置springboot详细步骤
文章图片

完成下图操作保存即可

idea使用外置tomcat配置springboot详细步骤
文章图片

配置tomcat启动项
idea使用外置tomcat配置springboot详细步骤
文章图片

idea使用外置tomcat配置springboot详细步骤
文章图片

idea使用外置tomcat配置springboot详细步骤
文章图片

idea使用外置tomcat配置springboot详细步骤
文章图片

配置视图解析器

idea使用外置tomcat配置springboot详细步骤
文章图片

创建一个springboot主程序
@SpringBootApplicationpublic class SpringBootMain {public static void main(String[] args) {SpringApplication.run(SpringBootMain.class,args); }}

必须编写一个SpringBootServletInitializer的子类,并调用configure方法里面的固定写法
public class ServletInitializer extends SpringBootServletInitializer {@Overrideprotected SpringApplicationBuilder configure(SpringApplicationBuilder application) {//传入SpringBoot的主程序,return application.sources(SpringBootMain.class); }}

然后启动tomcat,控制台输出了spring就启动成功了
idea使用外置tomcat配置springboot详细步骤
文章图片

【idea使用外置tomcat配置springboot详细步骤】到此这篇关于idea配置springboot使用外置tomcat详细步骤的文章就介绍到这了,更多相关idea配置springboot内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    推荐阅读