idea使用外置tomcat配置springboot详细步骤
- 创建一个maven项目
- 导入springboot依赖,注意底下注释部分
4.0.0 com.znsd.springboot springboot-jsp1.0-SNAPSHOT warorg.springframework.boot spring-boot-starter-parent2.3.12.RELEASE org.springframework.boot spring-boot-starter-weborg.springframework.boot spring-boot-starter-tomcatprovidedorg.springframework.boot spring-boot-starter-testtestorg.junit.vintage junit-vintage-engineorg.springframework.boot spring-boot-maven-plugin
文章图片
文章图片
完成下图操作保存即可
文章图片
配置tomcat启动项
文章图片
文章图片
文章图片
文章图片
配置视图解析器
文章图片
创建一个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配置springboot使用外置tomcat详细步骤的文章就介绍到这了,更多相关idea配置springboot内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程
- 使用composer自动加载类文件
- android|android studio中ndk的使用
- 使用协程爬取网页,计算网页数据大小