Mybatis学习 四

Spring 集成Mybatis

一:首先下载jar包(Spring、mybatis、dbcp及mybatis-spring),注意Spring与mybatis之间是有版本要求的,不然会报错,具体版本间对照网上很多,就不贴出来了

数据库连接池使用的是dbcp,这个看自己,可以随时替换



org.apache.commons
commons-dbcp2
2.1.1




org.mybatis
mybatis-spring
1.3.2




org.mybatis
mybatis
3.4.6



org.springframework
spring-context
4.3.14.RELEASE



org.springframework
spring-jdbc
4.3.14.RELEASE



org.springframework.batch
spring-batch-infrastructure
3.0.9.RELEASE

二:配置spring配置文件

       xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">






class="org.apache.commons.dbcp2.BasicDataSource"
destroy-method="close">





























class="org.springframework.jdbc.datasource.DataSourceTransactionManager">





三:测试

Mybatis学习 四_第1张图片

 

 由于我们要在main方法中测试,所以讲UserDao加了static关键字,运行提示错误,@Autowired自动注入不支持静态域,再次修改测试

Mybatis学习 四_第2张图片

 

 我们从applicationContext中得到TestMain的实例,执行下面的bindSSM方法,测试成功

另外需要注意的是必须从applicationContext中得到TestMain的实例,不能自己new MainTest()得到实例,不然UserDao会注入不成功

 

你可能感兴趣的:(Mybatis学习 四)