解决The import org.mybatis cannot be resolved问题。

问题

最近在研究SpringBoot集成JTA,参照网上一个例子并在工程中实践时,编译报错:

The import org.mybatis cannot be resolved

解决The import org.mybatis cannot be resolved问题。_第1张图片

分析

经过分析发现,pom中已经定义了mybatis相关jar包。

但在mybatis的源码中发现,并不存在“org.mybatis.spring.*”这样的package。

于是,去Maven大本营找类似jar包,很快就发现了MyBatis Spring这个可疑的包。经过验证,确定无误。

解决The import org.mybatis cannot be resolved问题。_第2张图片

 

解决

由于使用的是MyBatis3.4.5,对应的MyBatis Spring版本1.3.1.(最新版1.3.2要求MyBatis 3.4.6)

在pom文件中加入对应依赖即可。



    org.mybatis
    mybatis-spring
    1.3.1

 

文章结束。

你可能感兴趣的:(Spring,SpringBoot,MyBatis)