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

前端之家收集整理的这篇文章主要介绍了maven打包排除spring-boot内嵌tomcat容器依赖jar前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

<plugin>
                    artifactId>maven-war-plugin</version>3.0.0configuration> <!-- 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
                        >
                >

 

原文链接:/maven/991878.html

猜你在找的Maven相关文章