`

spring frame 事务回滚的测试

阅读更多

 我的环境配置
Mysql :server version: 5.0.45-Debian_1ubuntu3.1-log Debian etch distribution
Spring frame: 2.0
jdk 1.6
数据库的配置:

--  MySQL Administrator dump 1.4
--
--
 ------------------------------------------------------
--
 Server version    5.0.45-Debian_1ubuntu3.1-log


/**/ /* !40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT  */ ;
/**/ /* !40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS  */ ;
/**/ /* !40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION  */ ;
/**/ /* !40101 SET NAMES utf8  */ ;

/**/ /* !40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0  */ ;
/**/ /* !40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0  */ ;
/**/ /* !40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO'  */ ;


--
--
 Create schema SQLMapStudy
--

CREATE   DATABASE   IF   NOT   EXISTS  SQLMapStudy;
USE  SQLMapStudy;

--
--
 Definition of table `SQLMapStudy`.`ORDER`
--

DROP   TABLE   IF   EXISTS  `SQLMapStudy`.` ORDER `;
CREATE   TABLE   `SQLMapStudy`.` ORDER ` (
  `id` 
int ( 11 NOT   NULL  auto_increment,
  `
level int ( 11 default   ' 0 ' ,
  `name` 
text ,
  
PRIMARY   KEY   (`id`)
) ENGINE
= InnoDB AUTO_INCREMENT = 42   DEFAULT  CHARSET = latin1;

--
--
 Dumping data for table `SQLMapStudy`.`ORDER`
--

/**/ /* !40000 ALTER TABLE `ORDER` DISABLE KEYS  */ ;
LOCK TABLES `
ORDER ` WRITE;
INSERT   INTO  `SQLMapStudy`.` ORDER VALUES   ( 24 , 5 , ' 233571 ' ),
 (
25 , 3 , ' 237607 ' ),
 (
26 , 4 , ' 951320 ' ),
 (
27 , 4 , ' 3981449 ' ),
 (
28 , 3 , ' 4201861 ' ),
 (
29 , 3 , ' 4286204 ' ),
 (
30 , 4 , ' 4467730 ' ),
 (
31 , 4 , ' 4577921 ' ),
 (
32 , 4 , ' 4644267 ' ),
 (
33 , 4 , ' 4676767 ' ),
 (
34 , 4 , ' 8718591 ' ),
 (
35 , 4 , ' 1200488898355 ' ),
 (
36 , 3 , ' 1200489291189 ' ),
 (
37 , 3 , ' 1200489506119 ' ),
 (
38 , 3 , ' 1200490058635 ' ),
 (
41 , 4 , ' 1200490554236 ' );
UNLOCK TABLES;
/**/ /* !40000 ALTER TABLE `ORDER` ENABLE KEYS  */ ;




/**/ /* !40101 SET SQL_MODE=@OLD_SQL_MODE  */ ;
/**/ /* !40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS  */ ;
/**/ /* !40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS  */ ;
/**/ /* !40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT  */ ;
/**/ /* !40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS  */ ;
/**/ /* !40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION  */ ;
/**/ /* !40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT  */ ;

要注意的问题:ENGINE=InnoDB

数据库映射对象类Order

/**/ /*
 * Copyright (C) 2000-2007 Wang Pengcheng <wpc0000@gmail.com>
 * Licensed to the Wang Pengcheng under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The LGPL licenses this file to You under the GNU Lesser General Public
 * Licence, Version 2.0  (the "License"); you may not use this file except in
 * compliance with the License.  You may obtain a copy of the License at
 *
 *     
http://www.gnu.org/licenses/lgpl.txt
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 
*/

// Edit 15 Jan 2008
package  com.studyspring.ch5;

public   class  Order  ... {
    
private   int  id;
    
private   int  level;
    
private  String name;
    
public   int  getId()  ... {
        
return  id;
    }

    
public   void  setId( int  id)  ... {
        
this .id  =  id;
    }

    
public   int  getLevel()  ... {
        
return  level;
    }

    
public   void  setLevel( int  level)  ... {
        
this .level  =  level;
    }

    
public  String getName()  ... {
        
return  name;
    }

    
public   void  setName(String name)  ... {
        
this .name  =  name;
    }

    
}

实现RowMapper:

/**/ /*
 * Copyright (C) 2000-2007 Wang Pengcheng <wpc0000@gmail.com>
 * Licensed to the Wang Pengcheng under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The LGPL licenses this file to You under the GNU Lesser General Public
 * Licence, Version 2.0  (the "License"); you may not use this file except in
 * compliance with the License.  You may obtain a copy of the License at
 *
 *     
http://www.gnu.org/licenses/lgpl.txt
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 
*/

// Edit 15 Jan 2008
package  com.studyspring.ch5;

import  java.sql.ResultSet;
import  java.sql.SQLException;

import  org.springframework.jdbc.core.RowMapper;

public   class  OrderRowMapper  implements  RowMapper  ... {

分享到:
评论

相关推荐

    spring 简单实例 事务回滚

    在这个“spring简单实例 事务回滚”的案例中,我们将深入探讨Spring如何处理事务回滚,以及它是如何在Java源码层面实现这一功能的。 首先,让我们理解什么是事务。在数据库操作中,事务是确保数据一致性的重要机制...

    Spring+Mybatis整合事务回滚

    花了一晚上时间终于搞出来了Spring整合Mybatis事务回滚(Mysql数据库),控制Service层中的多次插入操作,多次操作整体是一个事务。 里面有缘嘛和jar包,资源为war包,导入即可。运行Test类中的测试代码即可。 建表...

    带事务回滚测试的SSH整合小案例(Spring 3.2+Hibernate 3.3+Struts 2.3)

    集成了Spring 3.2.2 Hibernate 3.3.2 Struts 2.3.4 用JPA的注解实现orm 不用创建数据库表 只需本机上有oracle即可 用JSR注解进行Spring的...用Spring Test整合Junit4 进行测试并自动事务回滚 不对数据库造成持久化操作

    Spring中@Transactional事务回滚(含实例

    本文将深入解析`@Transactional`的事务回滚机制,并通过实例来详细讲解其工作原理,帮助读者理解和应用这一核心功能。 一、`@Transactional`注解介绍 `@Transactional`是Spring提供的一个注解,用于在方法级别或类...

    mongoDB 4.0事务回滚的辛酸历程探究

    事务回滚是事务处理中的关键部分,确保在出现错误或异常时,数据库能够恢复到事务开始之前的状态。 在升级到MongoDB 4.0之后,首先需要注意的是确保环境的兼容性。使用Homebrew升级MongoDB到4.0.0版本,同时更新`...

    使用SpringBoot注解方式处理事务回滚实现

    使用 SpringBoot 注解方式处理事务回滚实现 在本文中,我们将介绍使用 SpringBoot 注解方式处理事务回滚实现的方法,并通过示例代码进行详细的讲解。本文对于学习 SpringBoot 的开发者或者工作中需要实现事务回滚的...

    浅谈Spring中@Transactional事务回滚及示例(附源码)

    浅谈Spring中@Transactional事务回滚及示例 @Transactional是Spring Framework中的一种事务管理机制,用于管理数据库事务。它可以使得数据库操作更加安全和可靠。本文将详细介绍@Transactional的使用场景、checked...

    spring事务异常回滚实例解析

    首先,Spring 默认只有在遇到未捕获的 `RuntimeException` 或其子类时才会触发事务回滚。这意味着,如果在业务代码中对异常进行了捕获并处理,而没有再抛出异常,那么事务将不会自动回滚。例如,在提供的代码实例中...

    SpringBoot事务使用及回滚实现代码详解

    事务是指一组操作的集合,作为一个单元执行,如果其中任何一个操作失败,则整个事务回滚,保证数据的一致性。 在SpringBoot中,事务的使用需要在启动类上添加@EnableTransactionManagement注解,以开启事务支持。...

    Spring事务管理A方法内部调用B方法的回滚问题测试代码

    此外,需要注意的是,只有当事务边界内的异常是未检查异常(继承自RuntimeException的异常)或者是`Error`时,Spring才会自动回滚事务。对于已检查异常(继承自Exception的非RuntimeException),除非显式声明`@...

    4.Spring中的JdbcTemplate,Spring中的的事务,

    Spring框架支持两种类型的事务管理:编程式事务管理和声明式事务管理。 - **编程式事务管理**:通过编码的方式来管理事务,适用于需要细粒度控制的情况。 - **声明式事务管理**:通过配置来管理事务,更易于使用且...

    Java Spring 事务回滚详解

    本篇文章将深入探讨Java Spring中的事务回滚机制。 首先,让我们了解异常的基本概念。在Java中,异常是程序运行时遇到的错误,分为两类:Error和Exception。Error是程序无法恢复的严重问题,如虚拟机错误,通常不需...

    spring-控制事物回滚

    - 压缩包中的`Test_jdbc_tran`可能是一个测试文件,用于演示如何在JDBC操作中控制事务回滚。在单元测试中,可以使用`@Transactional`注解来开启事务,并在测试结束后自动回滚,确保测试环境的清洁。 8. **Spring ...

    MySql事务无法回滚的原因有哪些

    MySQL事务无法回滚的情况可能由多种因素引起,尤其是在配置如Hibernate、Spring或JDBC等框架时,如果一切看似正常,但事务处理仍然失效,我们应当深入检查数据库本身的特性和设置。首要的问题通常与所选用的表类型...

    Spring Boot多数据源(支持Spring声明式事务切换和回滚).pdf

    - 提供了跨数据源的事务回滚能力,简化了系统设计,降低了处理多数据源时的复杂性。在除了分布式事务外的大多数情况下,只需考虑这个机制,就能保证事务的正确性。 在多租户SaaS架构中,数据隔离至关重要。常见的...

    Spring Hibernate 事务处理 详细说明

    总结起来,Spring和Hibernate的事务处理涉及了Spring的声明式事务管理、事务的传播行为、隔离级别以及回滚规则等概念。通过整合这两者,我们可以构建高效、健壮的企业级应用程序,确保数据的完整性和一致性。了解并...

    spring事务案例分析.zip

    4. **事务回滚规则**:在默认情况下,如果在@Transactional注解的方法中抛出未检查异常(继承自RuntimeException的异常)或Error,Spring会自动回滚事务。如果抛出的是受检异常(非RuntimeException),则不会自动...

    Spring中事务的传播属性详解

    如果`methodB`的事务提交成功,但`methodA`的事务回滚,`methodB`的结果不会受到影响。 5. **PROPAGATION_NOT_SUPPORTED** `methodB`将以非事务方式执行。如果当前存在事务,那么`methodB`将导致该事务被挂起。这...

Global site tag (gtag.js) - Google Analytics