码迷,mamicode.com
首页 > 编程语言 > 详细

springboot建立web应用程序的坑(tomcat-embed-core)

时间:2021-01-12 11:06:17      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:star   span   创建   framework   建立   部门   踩坑   web   一件事   

这里踩了一个大坑,因为spring-boot-starter-web这个jar包中已经有tomcat了,所以有一定的机率 导致创建web项目失败,

所以要做一件事,就是把tomcat排除

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>

其中红色的部门就是排除tomcat的代码,希望各位同僚避免踩坑!!!!!

springboot建立web应用程序的坑(tomcat-embed-core)

标签:star   span   创建   framework   建立   部门   踩坑   web   一件事   

原文地址:https://www.cnblogs.com/niuniu0108/p/14257925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!