`

知识点八:spring的事物

阅读更多
spring2.5的事物管理,分为两种方式,一是基于注解方式的,而是基于配置文件方式的

一。基于注解方式

import java.util.List;

import javax.sql.DataSource;

import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

import com.mingbai.bean.StudentBean;
import com.mingbai.service.StudentService;

//将此业务类交由spring的事务管理,这时此方法的某个方法在执行前就开启事务,结束后提交事务
@Transactional                  
public class StudentServiceImpl implements StudentService {
	private JdbcTemplate jdbcTemplate;

	public void setDataSource(DataSource dataSource) {
		this.jdbcTemplate = new JdbcTemplate(dataSource);
	}

/*	public void delete(Integer sid) {
		jdbcTemplate.update("delete from student where id=?", 
				new Object[]{sid}, new int[]{java.sql.Types.INTEGER});
		throw new RuntimeException("我是异常");
	}*/
/*	@Transactional(rollbackFor=Exception.class)
	public void delete(Integer sid) throws Exception {
		jdbcTemplate.update("delete from student where id=?", 
				new Object[]{sid}, new int[]{java.sql.Types.INTEGER});
		throw new Exception("我是异常");
	}*/
	@Transactional(noRollbackFor=RuntimeException.class)
	public void delete(Integer sid) throws Exception {
		jdbcTemplate.update("delete from student where id=?", 
				new Object[]{sid}, new int[]{java.sql.Types.INTEGER});
		throw new RuntimeException("我是运行期异常");//运行期例外(unchecked exception)事务默认回滚
	}
	
	@Transactional(propagation=Propagation.NOT_SUPPORTED)
	public List<StudentBean> getAllStudent() {
		return jdbcTemplate.query("select * from student", new StudentRowMapper());
	}
	
	public StudentBean getStudent(Integer sid) {
		StudentBean sb = (StudentBean)jdbcTemplate.queryForObject("select * from student where id=?", new Object[]{sid}, new int[]{java.sql.Types.INTEGER}, new StudentRowMapper());
		return sb;
	}

	public void save(StudentBean student) {
		jdbcTemplate.update("insert into student(name,password) values(?,?)", 
				new Object[]{student.getName(),student.getPassword()}, new int[]{java.sql.Types.VARCHAR,java.sql.Types.VARCHAR});
	}

	public void update(StudentBean student) {
		jdbcTemplate.update("update student set name=? where id=?", 
				new Object[]{student.getName(),5}, new int[]{java.sql.Types.VARCHAR,java.sql.Types.INTEGER});
	}

}

数据库链接信息放在类路径的文件jdbc.properties中

driverClassName=org.gjt.mm.mysql.Driver
url=jdbc\:mysql\://localhost\:3306/test
username=root
password=
initialSize=1
maxActive=500
maxIdle=2
minIdle=1


此时的配置文件需要注明采用注解方式

<?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:context="http://www.springframework.org/schema/context" 
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">          
     
     
     <context:property-placeholder location="classpath:jdbc.properties"/><!-- 属性文件,占位符 -->
	 <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
	    <property name="driverClassName" value="${driverClassName}"/>
	    <property name="url" value="${url}"/>
	    <property name="username" value="${username}"/>
	    <property name="password" value="${password}"/>
	     <!-- 连接池启动时的初始值 -->
		 <property name="initialSize" value="${initialSize}"/>
		 <!-- 连接池的最大值 -->
		 <property name="maxActive" value="${maxActive}"/>
		 <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
		 <property name="maxIdle" value="${maxIdle}"/>
		 <!--  最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
		 <property name="minIdle" value="${minIdle}"/>
	 </bean>
     
     
     <!-- 
     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
	    <property name="driverClassName" value="org.gjt.mm.mysql.Driver"/>
	    <property name="url" value="jdbc:mysql://localhost:3306/test"/>
	    <property name="username" value="root"/>
	    <property name="password" value=""/>
		 <property name="initialSize" value="1"/>
		 <property name="maxActive" value="500"/>
		 <property name="maxIdle" value="1"/>
		 <property name="minIdle" value="1"/>
	 </bean>
	  -->
	<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  	   <property name="dataSource" ref="dataSource"/>
    </bean>
    <!-- 采用注解事务方式-->
    <tx:annotation-driven transaction-manager="txManager"/>
       <bean id="studentService" class="com.mingbai.service.impl.StudentServiceImpl">
       <property name="dataSource"  ref="dataSource"></property>
    </bean>
</beans>






一。基于xml配置方式

import java.util.List;

import javax.sql.DataSource;

import org.springframework.jdbc.core.JdbcTemplate;

import com.mingbai.bean.StudentBean;
import com.mingbai.service.StudentService;

                  
public class StudentServiceImpl2 implements StudentService {
	private JdbcTemplate jdbcTemplate;

	public void setDataSource(DataSource dataSource) {
		this.jdbcTemplate = new JdbcTemplate(dataSource);
	}


	public void delete(Integer sid) throws Exception {
		jdbcTemplate.update("delete from student where id=?", 
				new Object[]{sid}, new int[]{java.sql.Types.INTEGER});
		throw new RuntimeException("我是运行期异常");//运行期例外(unchecked exception)事务默认回滚
	}
	
	public List<StudentBean> getAllStudent() {
		return jdbcTemplate.query("select * from student", new StudentRowMapper());
	}
	
	public StudentBean getStudent(Integer sid) {
		StudentBean sb = (StudentBean)jdbcTemplate.queryForObject("select * from student where id=?", new Object[]{sid}, new int[]{java.sql.Types.INTEGER}, new StudentRowMapper());
		return sb;
	}

	public void save(StudentBean student) {
		jdbcTemplate.update("insert into student(name,password) values(?,?)", 
				new Object[]{student.getName(),student.getPassword()}, new int[]{java.sql.Types.VARCHAR,java.sql.Types.VARCHAR});
	}

	public void update(StudentBean student) {
		jdbcTemplate.update("update student set name=? where id=?", 
				new Object[]{student.getName(),5}, new int[]{java.sql.Types.VARCHAR,java.sql.Types.INTEGER});
	}

}



配置文件

<?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:context="http://www.springframework.org/schema/context" 
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">          
     
     
  
     
     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
	    <property name="driverClassName" value="org.gjt.mm.mysql.Driver"/>
	    <property name="url" value="jdbc:mysql://localhost:3306/test"/>
	    <property name="username" value="root"/>
	    <property name="password" value=""/>
		 <property name="initialSize" value="1"/>
		 <property name="maxActive" value="500"/>
		 <property name="maxIdle" value="1"/>
		 <property name="minIdle" value="1"/>
	 </bean>
	<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  	   <property name="dataSource" ref="dataSource"/>
    </bean>

    <!-- 采用基于xml方式 -->
    <tx:advice id="txadvice" transaction-manager="txManager">
        <tx:attributes>
        	<tx:method name="get*" read-only="true" propagation="NOT_SUPPORTED"/>
        	<tx:method name="*" />
        </tx:attributes>
    </tx:advice>
    <aop:config>
    	<aop:pointcut id="transactionPointcut" expression="execution(* com.mingbai.service..*.*(..))"/>
    	<aop:advisor advice-ref="txadvice" pointcut-ref="transactionPointcut"/>
    </aop:config>
         
     
    <bean id="studentService" class="com.mingbai.service.impl.StudentServiceImpl">
       <property name="dataSource"  ref="dataSource"></property>
    </bean>
</beans>



分享到:
评论

相关推荐

    spring源代码解析

    【详细知识点】 1. **IOC容器**:Spring的核心组成部分,负责对象的创建、管理及依赖注入。在"spring源代码解析(一):IOC容器.doc"中,讲解了如何通过XML配置或注解方式定义bean,以及容器如何解析配置并构建对象...

    spring2.5参考手册

    在Spring 2.5版本中,主要包含了以下几个关键知识点: 1. **依赖注入**:这是Spring的核心特性之一。通过DI,Spring容器管理对象的生命周期和对象之间的关系,而不是由对象自己来管理。这减少了代码间的耦合度,...

    spring事物传播测试表

    本文将深入探讨“Spring事物传播测试表”所涉及的知识点。 首先,理解事务是非常重要的。在数据库操作中,事务确保数据的一致性和完整性。例如,一组相关的数据库操作要么全部成功,要么全部失败,这就是事务的ACID...

    J2EE实验6.docx

    知识点4: Spring AOP 实现日志功能 Spring AOP 提供了一个强大的日志功能,可以用于记录应用程序中的日志信息。在 Spring 配置文件中使用 aop 命名空间下的标签可以配置日志功能。例如,使用以下方式可以配置日志...

    基于springboot心理治愈网站论文.docx

    知识点八:心灵治愈交流平台的功能模块设计 心灵治愈交流平台的功能模块设计是指对平台的各个功能模块进行设计和实现。该平台的主要功能模块包括管理员管理、用户管理、心理咨询师管理、心灵专栏管理、压力测试管理...

    基于springboot特困救助供养信息管理系统论文.docx

    知识点六:Spring Boot 框架在特困救助供养信息管理系统中的应用 * Spring Boot 框架是一个基于 Java 语言的开源框架,用于开发特困救助供养信息管理系统。 * Spring Boot 框架可以简化系统的开发和维护,提高系统...

    spring 架包

    这些只是Spring框架一部分的关键知识点,实际上Spring还有更多的功能,如Spring Boot、Spring Cloud等,它们都是基于Spring框架构建的高级工具,用于简化微服务开发和云应用部署。了解并熟练掌握Spring框架,将极大...

    spring-控制事物回滚

    在Spring框架中,事务管理是核心功能之一,它允许开发者以声明式或编程式的方式处理应用中的事务。...通过理解这些知识点,我们可以更好地在Spring应用中管理和控制事务,确保系统数据的正确性和稳定性。

    Esta chido ni modo

    在讨论Spring Security的集成时,我们涉及的知识点主要包括: 1. **Spring Security基础**:Spring Security提供了多种安全特性,包括身份验证(登录、注册)、授权(访问控制)、会话管理以及CSRF(跨站请求伪造)...

    spring 事物总结

    Spring事务管理是Java开发中非常重要的一个概念,它在企业级应用中扮演着核心角色,确保数据的一致性和完整性。Spring提供了多种事务管理...了解并熟练掌握这些知识点对于任何使用Spring框架进行开发的人员都至关重要。

    spring事物 支持

    接下来,我们将深入探讨Spring事务支持的相关知识点。 首先,Spring事务管理分为编程式事务管理和声明式事务管理两种方式。 1. **编程式事务管理**:这是通过编程的方式来控制事务的边界。开发者可以使用`...

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

    下面我们将详细探讨Spring 2.x的声明式事务配置及其相关知识点。 首先,`applicationContext.xml`是Spring的配置文件,其中包含了Spring容器的定义,包括Bean的定义、依赖注入以及事务管理的配置。在声明式事务配置...

    spirn的事物配置详解与webservices案例

    1. Spring事物配置详解: 在Spring框架中,事务管理是核心功能之一,它允许开发者以声明式或编程式的方式来管理事务。声明式事务管理通过在XML配置文件或注解中定义事务边界,使得事务处理更加简洁。例如,可以使用...

    新北京课改版三年级下册小学英语全册单元知识点小结.docx

    【新北京课改版三年级下册小学英语全册单元知识点小结】 本资料详细总结了新北京课改版三年级下册小学英语教材全册的重要知识点,涵盖了词汇、句型和语法等多个方面,旨在帮助学生全面复习和巩固所学内容。 一、...

    spring+jdbc

    在"spring事物配置"中,Spring提供了声明式事务管理,这使得开发者无需在代码中手动处理事务的开始、提交、回滚等细节,而是通过配置来定义事务边界,极大地提升了代码的可读性和可维护性。 Spring JDBC模块是...

    2020届中考英语总复习知识点梳理第15讲八下Units9_10试题2020040816

    【中考英语总复习知识点梳理第15讲:八年级下Units 9-10】 本讲主要涵盖了八年级下学期英语的重要词汇和短语,旨在帮助2020届中考学生进行系统的复习和巩固。以下是详细的知识点: 1. 词汇: - camera:相机,...

    深圳小学英语四年级下册知识点复习.pdf

    标题《深圳小学英语四年级下册知识点复习.pdf》和描述《深圳小学英语四年级下册知识点复习.pdf》表明,本文是一份针对四年级学生下学期英语知识点的复习资料。根据提供的部分内容,可以提炼出以下知识点: 1. 常用...

    struts1,hibernate,spring整合demo1

    以下是对这个整合过程的关键知识点的详细说明: 1. **Struts1**:作为MVC框架,Struts1主要负责处理HTTP请求,调度控制器,以及视图的呈现。在整合中,它通常会配置Action类,这些类对应特定的URL请求,执行业务...

    spring and jdbc

    Spring框架是Java开发中不可或缺的一部分,它以其强大的依赖注入(IOC)和面向切面编程(AOP)功能而...通过理解和应用这些知识点,开发者可以构建出高效、可扩展且易于维护的Java应用程序,尤其是在处理数据库交互时。

Global site tag (gtag.js) - Google Analytics