org.mybatis.spring.transaction.SpringManagedTransaction.getTimeout()Ljava/lang/Integer;错误解决:

在ssm项目运行的时候报错:

严重: Servlet.service() for servlet [springmvc] in context with path [/BookSystem] threw exception [Handler dispatch failed; nested exception is java.lang.AbstractMethodError: org.mybatis.spring.transaction.SpringManagedTransaction.getTimeout()Ljava/lang/Integer;] with root cause


一开始以为是配置文件的问题,但是找了很久没找到哪里有不合适的和错误的配置。这里在百度了很久之后(该配置文件又遇到了很多奇奇怪怪的问题),最终找到问题是mybatis的jar包和mybatis-spring的jar包版本不对应,需要重新换成可以对应一起使用的jar包即可。

匹配的版本(mybatis、mybatis-spring)

3.3.1和1.1.1

3.4.1和1.3.1

3.4.2和1.3.0

你可能感兴趣的:(java)