源码下载:https://github.com/mybatis/mybatis-3.git
按tags下载,下载需要的mybatis-parent:https://github.com/mybatis/parent?
mybatis压缩包解压,修改pom文件
<parent>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-parent</artifactId>
<version>33</version>
<relativePath>../mybatis-parent-33/pom.xml</relativePath> --修改
</parent>
<version>3.5.9-hfx</version> --为了和源码区分,建议修改version
<!--<plugin> --注释掉
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pdf-plugin</artifactId>
</plugin>-->
把文件license.txt 删掉
使用idea或其他开发工具打开,进行编译
然后使用idea新建一个项目作为父项目
再把编译好的mybatis作为model导入到项目中
同理mybatis-spring也是同样的方式?
使用导入的mybatis测试可能遇到的问题
Cannot enable lazy loading because Javassist is not available
添加依赖
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.24.1-GA</version>
</dependency>
NoClassDefFoundError: ognl/PropertyAccessor
添加依赖
<dependency>
<groupId>ognl</groupId>
<artifactId>ognl</artifactId>
<version>3.2.10</version>
</dependency>
|