工程目录: 一、首先创建Maven工程导入依赖坐标
首先本案例通过Spring 整合mybatis 、Junit、Aspectj (Aop支持框架)
org.springframework spring-context 5.2.17.RELEASE org.mybatis mybatis 3.5.7 org.mybatis mybatis-spring 2.0.6 org.springframework spring-jdbc 5.2.17.RELEASE com.alibaba druid 1.2.8 mysql mysql-connector-java 5.1.49 org.springframework spring-test 5.2.17.RELEASE junit junit 4.13 test org.aspectj aspectjweaver 1.9.7
二、Spring 整合Mybatis
所依赖的jar有:
org.springframework spring-context 5.2.17.RELEASE org.mybatis mybatis 3.5.7 org.mybatis mybatis-spring 2.0.6 org.springframework spring-jdbc 5.2.17.RELEASE com.alibaba druid 1.2.8 mysql mysql-connector-java 5.1.49
通过配置类整合MyBatis
三、Spring整合Junit测试
org.springframework spring-test 5.2.17.RELEASE junit junit 4.13 test 三、Spring整合Aspectj面向切面编程所需依赖
org.aspectj aspectjweaver 1.9.7
未完,待续