加入exclusions标签,去掉spring boot内置的tomcat
时间: 2024-01-29 16:04:14 浏览: 82
xxl-job-springboot:将xxl-job修改为springboot版本 本地测试直接启动就可以了。不再需要手动部署tomcat
如果你想在 Spring Boot 项目中排除内置的 Tomcat 依赖,可以在 Maven 或 Gradle 构建文件中的 <dependency> 标签下添加 <exclusions> 标签来去掉该依赖,示例代码如下:
在 Maven 中:
```xml
<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>
```
在 Gradle 中:
```groovy
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
}
```
这样就可以排除内置的 Tomcat 依赖了。
阅读全文