一、框架整合思路
牢记
Spring存在的价值:管理(创建、使用、销毁)项目中的组件。将项目中的单层框架进行融合。
- 整合任意框架都首先找到框架的核心对象,然后将核心对象交由
Spring
容器去管理。
二、Spring整合Mybatis
- Mybatis框架的核心对象
SqlSessionFactory
。
SM整合步骤
- 引入依赖 mysql\spring-jdbc\mybatis\mybatis-spring\druid
- 建表
- 创建实体类
- dao接口
- mapper文件注册 classpath:com/weidd/best/dao/UserDaoMapper.xml
- 编写spring配置文件
- 将SQLSessionFactory对象交给Spring容器
- 引入DataSource数据源对象
- 引入mapper文件(创建Dao对象)
- spring.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<!--1\创建SQLSessionFactory 需要两个属性:DataSource\ mapperLocations-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<!--mapper文件注册优化:mapper文件注册,一次性注入多个mapper文件-->
<property name="mapperLocations" value="classpath:com/weidd/best/dao1/*.xml"></property>
<!--别名优化-->
<property name="typeAliasesPackage" value="com.weidd.best.pojo"></property>
</bean>
<!--2\创建DataSource-->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://localhost:3306/mysqlStudy"></property>
<property name="username" value="root"></property>
<property name="password" value="root"></property>
</bean>
<!--优化 创建Dao-->
<!-- <bean id="productDao" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
<property name="mapperInterface" value="com.weidd.best.dao1.ProductDao"></property>
</bean>-->
<!--一次性注入整个包下的类 使用MapperScannerConfigurer批量注入Dao,默认在容器中的名为:UserDao > userDao首字母小写-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
<property name="basePackage" value="com.weidd.best.dao1"/>
</bean>
<!--创建事务管理器:作用:保证service dao使用同一个连接对象-->
<!--transactionManager 可以看做是一个线程安全的连接对象-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--
自己实现如下:
类 implements MethodInpertector
transactionManager
public Onject invoke(){
transactionManager.getConnection.set...
放行.
transactionManager.getConnection.commit...
or
transactionManager.getConnection.rollback...
}
-->
<!--
tx:advice : 用来创建一个环绕通知
id:创建环绕通知在工厂中的唯一标识
transaction-Manager: 指定当前使用的事务管理
-->
<tx:advice id="interceptor" transaction-manager="transactionManager">
<!--事务的细粒度控制-->
<tx:attributes>
<tx:method name="save*"/>
<tx:method name="*update*"/>
<tx:method name="delete*"/>
</tx:attributes>
</tx:advice>
<!--组装切面-->
<aop:config>
<aop:pointcut id="pc" expression="within(com.weidd.best.service1.*Impl)"/>
<aop:advisor advice-ref="interceptor" pointcut-ref="pc"/>
</aop:config>
<bean id="productService" class="com.weidd.best.service1.ProductServiceImpl">
<property name="productDao" ref="productDao"/>
</bean>
</beans>
- ProductDaoMapper.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.weidd.best.dao1.ProductDao">
<insert id="saveProduct" parameterType="com.weidd.best.pojo.Product">
insert into product values (#{pname},#{price})
</insert>
</mapper>