服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - idea使用外置tomcat配置springboot详细步骤

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

2021-09-27 10:11丶楠忆 Java教程

昨天小编遇到一个问题使用springboot自带的tomcat启动没有任何问题,不知道idea使用外置tomcat配置springboot该如何设置的,今天小编给大家分享一篇教程帮助大家解决这个问题

  • 创建一个maven项目
  • 导入springboot依赖,注意底下注释部分
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>com.znsd.springboot</groupId>
  8. <artifactId>springboot-jsp</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <!-- 一定要声明war包 -->
  12. <packaging>war</packaging>
  13. <parent>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-parent</artifactId>
  16. <version>2.3.12.RELEASE</version>
  17. <relativePath/> <!-- lookup parent from repository -->
  18. </parent>
  19.  
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25.  
  26. <!-- 去除springboot默认tomcat依赖,让其在生成war包时无效, -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-tomcat</artifactId>
  30. <!--在编译和测试有效,生成war包时无效-->
  31. <scope>provided</scope>
  32. </dependency>
  33.  
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.junit.vintage</groupId>
  41. <artifactId>junit-vintage-engine</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. </dependencies>
  46.  
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>

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主程序

  1. @SpringBootApplication
  2. public class SpringBootMain {
  3. public static void main(String[] args) {
  4. SpringApplication.run(SpringBootMain.class,args);
  5. }
  6. }

必须编写一个SpringBootServletInitializer的子类,并调用configure方法里面的固定写法

  1. public class ServletInitializer extends SpringBootServletInitializer {
  2. @Override
  3. protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
  4. //传入SpringBoot的主程序,
  5. return application.sources(SpringBootMain.class);
  6. }
  7. }

然后启动tomcat,控制台输出了spring就启动成功了

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

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

原文链接:https://www.cnblogs.com/nanyiaka/p/14959805.html

延伸 · 阅读

精彩推荐