Initialization of bean failed; nested exception is java.lang.NoSuchMethodError:
原因是:pom.xml中的jar包的版本不统一
例子:把事务的版本也改成5.1.x的就解决了
<!--报错配置文件!原因:事务的jar包是5.2.6-->
<!--spring-->
<dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.1.4.RELEASE</version>
</dependency>
<!--AOP-->
<dependency><groupId>org.springframework</groupId><artifactId>spring-aop</artifactId><version>5.1.14.RELEASE</version>
</dependency>
<!--tx-->
<dependency><groupId>org.springframework</groupId><artifactId>spring-tx</artifactId><version>5.2.6.RELEASE</version>
</dependency>
发布评论