spring 整合JDBC和AOP事务的方法
spring整合JDBC
spring提供了很多模板整合Dao技术
ORM持久化技术 | 模板类 |
---|---|
JDBC | org.springframework.Jdbc.core.JdbcTemplate |
Hibernate3.0 | org.springframework.orm.hiberate3.HibernateTemplate |
IBatis(MyBatis) | org.springframework.orm.sqlMapClientTemplate |
JPA | org.springframework.orm.jpa.JpaTemplate |
spring中提供了一个可以操作数据库的对象.对象封装了jdbc技术.
// JDBCTemplate => JDBC模板对象 // 与DBUtils中的QueryRunner非常相似. // 0 准备连接池 ComboPooledDataSource dataSource = new ComboPooledDataSource(); dataSource.setDriverClass("com.mysql.jdbc.Driver"); dataSource.setJdbcUrl("jdbc:mysql:///hibernate_32"); dataSource.setUser("root"); dataSource.setPassword("1234"); // 1 创建JDBC模板对象 JdbcTemplate jt = new JdbcTemplate(); jt.setDataSource(dataSource); // 2 书写sql,并执行 String sql = "insert into t_user values(null,'rose') "; jt.update(sql);
步骤
1.导包
- 基础包4 + 2
- spring-test
- spring-aop
- junit4类库
- 新增c3p0连接池JDBC驱动包
- spring-jdbc包
- spring-tx事务包
2.准备数据库
本地数据库和表
3.书写dao
// 使用JDBC模板实现增删改查 public class UserDaoImpl extends JdbcDaoSupport implements UserDao { @Override public void save(User u) { String sql = "insert into t_user values(null,?) "; super.getJdbcTemplate().update(sql, u.getName()); } @Override public void delete(Integer id) { String sql = "delete from t_user where id = ? "; super.getJdbcTemplate().update(sql,id); } @Override public void update(User u) { String sql = "update t_user set name = ? where id=? "; super.getJdbcTemplate().update(sql, u.getName(),u.getId()); } @Override public User getById(Integer id) { String sql = "select * from t_user where id = ? "; return super.getJdbcTemplate().queryForObject(sql,new RowMapper<User>(){ @Override public User mapRow(ResultSet rs, int arg1) throws SQLException { User u = new User(); u.setId(rs.getInt("id")); u.setName(rs.getString("name")); return u; }}, id); } @Override public int getTotalCount() { String sql = "select count(*) from t_user "; Integer count = super.getJdbcTemplate().queryForObject(sql, Integer.class); return count; } @Override public List<User> getAll() { String sql = "select * from t_user "; List<User> list = super.getJdbcTemplate().query(sql, new RowMapper<User>(){ @Override public User mapRow(ResultSet rs, int arg1) throws SQLException { User u = new User(); u.setId(rs.getInt("id")); u.setName(rs.getString("name")); return u; }}); return list; } }
4.spring配置
<!-- 指定spring读取db.properties配置 --> <context:property-placeholder location="classpath:db.properties" /> <!-- 1.将连接池放入spring容器 --> <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" > <property name="jdbcUrl" value="${jdbc.jdbcUrl}" ></property> <property name="driverClass" value="${jdbc.driverClass}" ></property> <property name="user" value="${jdbc.user}" ></property> <property name="password" value="${jdbc.password}" ></property> </bean> <!-- 2.将JDBCTemplate放入spring容器 --> <bean name="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" > <property name="dataSource" ref="dataSource" ></property> </bean> <!-- 3.将UserDao放入spring容器 --> <bean name="userDao" class="cn.zhli13.jdbctemplate.UserDaoImpl" > <property name="jt" ref="jdbcTemplate" ></property> </bean> // 若UserDao类继承了JdbcDaoSupport,则无需将JDBCTemplate注入到容器中,省略第二步,第三步改为 <!-- 3.将UserDao放入spring容器 --> <bean name="userDao" class="cn.zhli13.jdbctemplate.UserDaoImpl" > <property name="dataSource" ref="dataSource" ></property> </bean>
spring中aop事务
事务
事务特性:acid
事务并发问题:脏读、不可重复读、幻读
事务的隔离级别:1 读未提交、2 读已提交、4 可重复读、8 串行化
spring封装了事务管理代码
事务操作:1、打开事务、2、提交事务、3、回滚事务
事务操作对象
因为在不同平台,操作事务的代码各不相同.spring提供了一个接口
PlatformTransactionManager 接口
- DataSourceTransactionManager
- HibernateTransitionmanager
注意:在spring中玩事务管理.最为核心的对象就是TransactionManager对象
spring管理事务的属性介绍
事务的隔离级别:1 读未提交、2 读已提交、4 可重复读、8 串行化
是否只读: true只读 false可操作
事务的传播行为:决定业务方法之间调用,事务应该如何处理
* 保证同一个事务中
PROPAGATION_REQUIRED 支持当前事务,如果不存在 就新建一个(默认、推荐99.99%用这种)
PROPAGATION_SUPPORTS 支持当前事务,如果不存在,就不使用事务
PROPAGATION_MANDATORY 支持当前事务,如果不存在,抛出异常* 保证没有在同一个事务中
PROPAGATION_REQUIRES_NEW 如果有事务存在,挂起当前事务,创建一个新的事务
PROPAGATION_NOT_SUPPORTED 以非事务方式运行,如果有事务存在,挂起当前事务
PROPAGATION_NEVER 以非事务方式运行,如果有事务存在,抛出异常
PROPAGATION_NESTED 如果当前事务存在,则嵌套事务执行
spring管理事务方式
// 编码式 // 1.将核心事务管理器配置到spring容器 <!-- 事务核心管理器,封装了所有事务操作. 依赖于连接池 --> <bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager" > <property name="dataSource" ref="dataSource" ></property> </bean> // 2.配置TransactionTemplate模板 <!-- 事务模板对象 --> <bean name="transactionTemplate" class="org.springframework.transaction.support.TransactionTemplate" > <property name="transactionManager" ref="transactionManager" > </property> </bean> // 3.将事务模板注入Service <!-- 3.Service--> <bean name="accountService" class="cn.itcast.service.AccountServiceImpl" > <property name="ad" ref="accountDao" ></property> <property name="tt" ref="transactionTemplate" ></property> </bean>
xml配置(aop)
// 1.导包 // aop、aspect、aopliance、aspect.weaver // 2.导入新的约束(tx) // beans: 最基本、context:读取properties配置、aop:配置aop、tx:配置事务通知 // 3.配置通知 <!-- 配置事务通知 --> <tx:advice id="txAdvice" transaction-manager="transactionManager" > <tx:attributes> <!-- 以方法为单位,指定方法应用什么事务属性 isolation:隔离级别 propagation:传播行为 read-only:是否只读 --> <tx:method name="save*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" /> <tx:method name="persist*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" /> <tx:method name="update*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" /> <tx:method name="modify*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" /> <tx:method name="delete*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" /> <tx:method name="remove*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" /> <tx:method name="get*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true" /> <tx:method name="find*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true" /> <tx:method name="transfer" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" /> </tx:attributes> </tx:advice> // 4.配置将通知织入目标 <!-- 配置织入 --> <aop:config > <!-- 配置切点表达式 --> <aop:pointcut expression="execution(* cn.zhli13.service.*ServiceImpl.*(..))" id="txPc"/> <!-- 配置切面 : 通知+切点 advice-ref:通知的名称 pointcut-ref:切点的名称 --> <aop:advisor advice-ref="txAdvice" pointcut-ref="txPc" /> </aop:config>
注解配置(aop)
// 1.导包(如xml配置一样) // 2.导入约束(同上) // 3.开启注解管理事务 <!-- 开启使用注解管理aop事务 --> <tx:annotation-driven/> // 4.使用注解 @Transactional(isolation=Isolation.REPEATABLE_READ,propagation=Propagation.REQUIRED,readOnly=true) public class AccountServiceImpl implements AccountService { @Transactional(isolation=Isolation.REPEATABLE_READ,propagation=Propagation.REQUIRED,readOnly=false) public void transfer(final Integer from,final Integer to,final Double money) {
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。