闲谈java.lang.NoSuchMethodError错误

在搭建ssm环境中,并且我的只在我的Test测试中出现了

java.lang.NoSuchMethodError: org.springframework.expression.spel.SpelParserConfiguration.(Lorg/springframework/expression/spel/SpelCompilerMode;Ljava/lang/ClassLoader;)V
这个错误,网上搜了很多,都没有我的情况,但也给了一些启发,基本上问题出现在jar包中。
大致有如下几种情况:

1.jar包版本不一致,建议spring包集中定义版本号;

2.少包,因为我的只在测试中出问题,跑在tomcat上没问题。而跟测试有关的包有junit和spring-test,这是在父项目需导入依赖(注意版本号)

		<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>5.0.2.RELEASE</version>
            <scope>test</scope>
        </dependency>

		<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>

3.多包,这里有可能是有重复的包冲突了,也有可能多依赖了不必要的包(可能是用idea开发智能提示时不小心生成的)。重复的包在父项目pom文件中查找删除即可,多依赖的包那就一定是在子模块pom文件中也要找到注释或删除(我的就是这种情况).
我的就是在dao模块中多了一个依赖

		<dependency>
            <groupId>com.alibaba.citrus</groupId>
            <artifactId>citrus-webx-all</artifactId>
            <version>3.1.6</version>
            <scope>test</scope>
        </dependency>

也不知道啥时生成的,注释后就测试没问题了

4.还有在网上看到的情况是class类名相同导致生成的编译文件冲突,解决方法是把类名改不一样的,然后缓存clean一下重新编译就好了

你可能感兴趣的:(Java异常,ssm环境)