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

java.lang.NoSuchMethodError: org.apache.tomcat.util.res.StringManager.getManager(Ljava/lang/Class;)Lorg/apache/tomcat/util/res/StringManager

时间:2017-03-15 00:25:18      阅读:1282      评论:0      收藏:0      [点我收藏+]

标签:error:   分享   scope   html   depend   provided   oat   nbsp   lan   

问题:

使用Springboot打包为war部署于Tomcat7中报错

java.lang.NoSuchMethodError: org.apache.tomcat.util.res.StringManager.getManager(Ljava/lang/Class;)Lorg/apache/tomcat/util/res/StringManager...

 

原因:

Springboot内嵌tomcat8,与tomcat7冲突

 

解决:

排除Springboot中的tomcat相关依赖,记得添加作用域为provided的servlet-api

技术分享
        <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>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>
技术分享

java.lang.NoSuchMethodError: org.apache.tomcat.util.res.StringManager.getManager(Ljava/lang/Class;)Lorg/apache/tomcat/util/res/StringManager

标签:error:   分享   scope   html   depend   provided   oat   nbsp   lan   

原文地址:http://www.cnblogs.com/oskyhg/p/6551346.html

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