maven打包排除spring-boot内嵌tomcat容器依赖jar

2023-06-26,,

在pom文件中添加打包排除配置信息。

<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration> <!-- Exclude JCL and LOG4J since all logging should go through SLF4J. Note that we're excluding log4j-<version>.jar but keeping log4j-over-slf4j-<version>.jar -->
<packagingExcludes>
WEB-INF/lib/tomcat-embed-*.jar,
WEB-INF/lib/spring-boot-starter-tomcat-*.jar
</packagingExcludes>
</configuration>
</plugin>

maven打包排除spring-boot内嵌tomcat容器依赖jar的相关教程结束。

《maven打包排除spring-boot内嵌tomcat容器依赖jar.doc》

下载本文的Word格式文档,以方便收藏与打印。