`

使用Spring的事务模板

阅读更多

整体的工程代码跟上一篇日志的工程差不多。

服务类StudentService.java的代码如下:

package com.mysrc.service;

import java.sql.Date;
import java.util.List;

import org.springframework.transaction.TransactionStatus;
import org.springframework.transaction.support.TransactionCallback;
import org.springframework.transaction.support.TransactionCallbackWithoutResult;
import org.springframework.transaction.support.TransactionTemplate;

import com.mysrc.dao.StudentDao;
import com.mysrc.entity.Student;

public class StudentService {
	private StudentDao dao;
	private TransactionTemplate transactionTemplate;

	public void setDao(StudentDao dao) {
		this.dao = dao;
	}

	public void setTransactionTemplate(TransactionTemplate transactionTemplate) {
		this.transactionTemplate = transactionTemplate;
	}

	public void doLogic1() {
		transactionTemplate.execute(new TransactionCallbackWithoutResult() {
			protected void doInTransactionWithoutResult(TransactionStatus status) {
				try {
					doComplexLogic();
				} catch (Exception ex) {
					// 通过调用 TransactionStatus 对象的 setRollbackOnly() 方法来回滚事务。
					status.setRollbackOnly();
					ex.printStackTrace();
				}
			}
		});
	}

	public String doLogic2() {
		return transactionTemplate.execute(new TransactionCallback<String>() {
			public String doInTransaction(TransactionStatus status) {
				String result = "success";
				try {
					doComplexLogic();
				} catch (Exception e) {
					status.setRollbackOnly();
					e.printStackTrace();
					result = "fail";
				}
				return result;
			}
		});
	}

	public void doComplexLogic() {

		// select
		List<Student> list = dao.getAllStudent();
		for (Student student : list) {
			System.out.println(student);
		}

		// update
		Student student = list.get(0);
		student.setName("dianping..");
		dao.updateStudent(student);
		System.out.println("did update temporarily...");

		// int a = 9 / 0; // 遇到异常

		int b = 2;
		if (b > 1) {
			throw new CustomRuntimeException();
		}

		// insert
		student = new Student();
		student.setName("hello");
		student.setBirth(new Date(354778));
		student.setScore(78.9f);
		dao.addStudent(student);
		System.out.println("did insert...");

		// delete
		dao.deleteStudent(3);
		System.out.println("did delete...");
	}

}

 和上两篇日志不同的是,这儿不仅注入了dao,而且注入了一个transactionTemplate。这里TransactionTemplate模板类使用两种回调接口:TransactionCallback和TransactionCallbackWithoutResult。从字面就可以知道一个是不带返回值的,而另一个可以给出一个返回值。这里用到的transactionTemplate在applicationContext.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:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
	xmlns:tx="http://www.springframework.org/schema/tx">

	<bean id="basicDataSource" class="org.apache.commons.dbcp.BasicDataSource">
		<property name="url"
			value="jdbc:mysql://127.0.0.1:3306/mytestdb?characterEncoding=utf8" />
		<property name="driverClassName" value="com.mysql.jdbc.Driver" />
		<property name="username" value="root" />
		<property name="password" value="123456" />
		<property name="maxActive" value="100" />
		<property name="maxIdle" value="30" />
		<property name="maxWait" value="1000" />
		<property name="validationQuery" value="select 1" />
	</bean>
	<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
		<constructor-arg name="dataSource" ref="basicDataSource">
		</constructor-arg>
	</bean>
	<bean id="transactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager ">
		<property name="dataSource">
			<ref bean="basicDataSource" />
		</property>
	</bean>

	<bean id="studentDao" class="com.mysrc.dao.StudentDao">
		<property name="jdbcTemplate">
			<ref bean="jdbcTemplate" />
		</property>
	</bean>

	<bean id="studentService" class="com.mysrc.service.StudentService">
		<property name="dao" ref="studentDao" />
		<property name="transactionTemplate" ref="aTransactionTemplate" />
	</bean>

	<bean id="aTransactionTemplate"
		class="org.springframework.transaction.support.TransactionTemplate">
		<property name="transactionManager" ref="transactionManager" />
		<property name="propagationBehaviorName" value="PROPAGATION_NESTED" />
		<property name="timeout" value="1000" />
		<property name="isolationLevelName" value="ISOLATION_READ_UNCOMMITTED" />
	</bean>

</beans>

 在TransactionTemplate的bean声明中,也可以添加timeout,isolation等配置。

测试类的代码如下:

package com.mysrc.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.mysrc.service.StudentService;

public class MyTester {

	public static void main(String[] args) {
		ApplicationContext context = new ClassPathXmlApplicationContext(
				"applicationContext.xml");
		StudentService studentService = (StudentService) context
				.getBean("studentService");
		studentService.doLogic1();
		String rs = studentService.doLogic2();
		System.out.println(rs);
	}

}

  eclipse工程文件在附件中。。

分享到:
评论

相关推荐

    spring事务详解

    总之,Spring事务框架提供了一套功能强大、易于使用的事务管理解决方案,它不仅可以减少代码量,提高开发效率,还可以通过声明式配置来提升代码的可读性和可维护性。对于希望深入学习Spring事务管理的开发者而言,...

    30. Spring事务模板及afterCommit存在的坑_V20240225.pdf

    ### Spring事务模板及afterCommit存在的坑 #### 一、为何避免使用`@Transactional`注解? 在支付系统设计中,通常会优先选择使用事务模板方法而非`@Transactional`注解来处理事务。这一做法主要是出于对事务粒度的...

    Spring的事务管理小案例

    在本文中,我们将深入探讨Spring框架中的事务管理。Spring是一个广泛应用的Java企业级应用开发框架,它提供...如果你想要深入了解,可以参考提供的博客链接或其他相关资料,进一步学习Spring事务管理的细节和最佳实践。

    spring框架简单模板

    这个模板可能包含了上述提到的一些核心概念,如依赖注入、Spring MVC的使用,或者数据库操作的示例,帮助新手快速理解和实践Spring框架的精髓。在实际开发中,开发者可以根据这个模板进行扩展,逐渐构建出满足需求的...

    spring+mybatis模板

    Spring 和 MyBatis 是两种非常流行的 Java 开发框架,它们在企业级应用中广泛使用。Spring 是一个全面的后端开发框架,提供了依赖注入、面向切面编程、事务管理等功能,而 MyBatis 是一个轻量级的持久层框架,专注于...

    spring事务管理5种方法

    本篇文章将深入探讨Spring事务管理的五种方法,旨在帮助开发者更好地理解和运用这一核心特性。 首先,我们来了解什么是事务。在数据库操作中,事务是一组逻辑操作,这些操作要么全部成功,要么全部失败,确保数据的...

    Spring事务配置的五种方式

    这种方式使用了 Spring 的事务模板机制,可以将事务管理器注入到 Bean 中。这种方式的优点是可以灵活地控制事务行为,但是缺点是需要了解事务模板的机制和实现。 Spring 的事务配置有多种方式,选择哪种方式取决于...

    springsimple_jdbc spring使用模板

    总结起来,"springsimple_jdbc"的主题涵盖了Spring框架下JDBC操作的简化和性能优化,主要体现在Spring的模板机制和数据库连接池的使用。这两个技术结合,使得我们能够在保持代码简洁的同时,提升数据库操作的效率,...

    Spring声明式事务配置模板2.x

    综上所述,Spring 2.x的声明式事务配置模板主要由`applicationContext.xml`中的事务管理器配置和注解驱动的事务管理两部分组成,结合`@Transactional`注解在业务逻辑中的使用,可以实现自动化、高效且易于维护的事务...

    spring_如何管理事务的

    // 创建事务模板并注入事务管理器 TransactionTemplate transactionTemplate = new TransactionTemplate(transactionManager); transactionTemplate.execute(new TransactionCallbackWithoutResult() { protected ...

    请教:spring事务不起作用

    首先,我们需要检查`SqlMapDao.java`和`MyTransactionTemplate.java`这两个文件,因为它们通常涉及到数据访问层的操作和事务模板的使用。在`SqlMapDao.java`中,如果你使用了MyBatis与Spring的整合,那么你需要确保...

    spring+Mybatis模板

    Spring 和 MyBatis 是两个非常流行的 Java 开发框架,它们在企业级应用开发中被广泛使用。Spring 提供了一个全面的编程和配置模型,而 MyBatis 是一个优秀的持久层框架,专注于数据库操作。现在我们将深入探讨这两个...

    spring编程式事务实现

    它封装了`PlatformTransactionManager`接口,提供了一种模板方法模式来执行事务边界内的代码。开发者只需要提供一个事务回调函数,`TransactionTemplate`会负责事务的开启、提交或回滚。 3. **使用...

    Spring4--3.jdbcTemplate事务

    - **事务模板**:TransactionTemplate是编程式事务管理的一个工具类,它提供了一种简单的方式来包装数据库操作。类似于JdbcTemplate,TransactionTemplate也处理了事务的开始、提交和回滚。 - **异常回滚规则**:...

    activemq5.5.1 Spring模板

    本文将深入探讨ActiveMQ 5.5.1版本与Spring框架的集成,以及如何利用Spring的模板模式简化ActiveMQ的使用。 一、ActiveMQ基础介绍 ActiveMQ是Apache软件基金会下的一个项目,遵循JMS(Java消息服务)规范,支持多种...

    spring事务管理

    Spring还提供了事务模板TransactionTemplate,它是PlatformTransactionManager的包装,简化了事务控制的代码。通过设置事务的隔离级别、超时时间等属性,然后调用execute方法执行事务操作,内部会自动处理事务的开始...

    spring_tx编程式事务代码

    总结来说,`Spring_tx编程式事务代码`主要涉及Spring的`TransactionTemplate`类,它是Spring事务管理的一种便捷工具,可以帮助开发者以编程的方式更加方便地控制事务的生命周期,同时保持代码的简洁和可维护性。...

    spring源码分析(1-10)

    8. **Spring 驱动Hibernate的实现**:Spring整合Hibernate,提供了SessionFactory的管理、事务绑定以及DAO模板(HibernateTemplate)。这使得应用能够以统一的方式使用Hibernate,而无需直接操作SessionFactory或...

    spring JDBC事务管理

    **工具使用**:Spring提供了许多工具,如`TransactionTemplate`,它是一个线程安全的事务管理模板,可以在没有DAO的情况下直接使用。此外,Spring Boot通过自动配置,可以简化事务管理的配置,开发者只需添加对应的...

Global site tag (gtag.js) - Google Analytics