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

在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>

 

posted @ 2017-06-05 09:36  旋转的梦  阅读(7045)  评论(0编辑  收藏  举报