`

Spring配置事务管理_Annotation

阅读更多
<?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:annotation-config />
	<context:component-scan base-package="com.bjsxt" />
	<bean id="txManager"
	      class="org.springframework.orm.hibernate3.HibernateTransactionManager">
	                  <property name="sessionFactory" ref="sessionFactory" />
	</bean>	
	<tx:annotation-driven transaction-manager="txManager"/>
</beans>

 

	@Transactional(readOnly=true)
	public void add(User user) {

 

分享到:
评论
1 楼 夕雨下 2011-09-20  
hi , 你能帮我看个问题吗 也是Spring配置事务管理_Annotation类的问题
http://www.iteye.com/problems/72107 谢谢

相关推荐

    学习Spring笔记_AOP_Annotation实现和XML实现

    这篇“学习Spring笔记_AOP_Annotation实现和XML实现”主要探讨了如何在Spring中利用注解和XML配置来实现AOP的概念。 AOP,全称Aspect-Oriented Programming,是一种编程范式,旨在将关注点分离,让开发者可以更专注...

    Spring_Annotation_AOP

    在本资料"Spring_Annotation_AOP"中,我们将深入探讨Spring框架如何利用注解实现AOP,以及其背后的原理和实践应用。 面向切面编程(AOP)是一种编程范式,旨在提高代码的可维护性和可重用性,通过将关注点分离,...

    spring_hibernate_annotation的三种实现

    Spring提供了多种事务管理方式,如编程式事务管理和声明式事务管理。其中,声明式事务管理可通过`@Transactional`注解实现,简化了事务处理。另外,优化性能也是重要环节,如使用二级缓存、批处理操作等。 总的来说...

    spring的annotation-driven配置事务管理器详解 (多数据源配置

    Spring 的 Annotation-Driven 配置事务管理器详解(多数据源配置) Spring 框架提供了强大的事务管理机制,通过使用 Annotation-Driven 配置,可以方便地管理事务。在多数据源配置中,spring 的 Annotation-Driven...

    struts2_1_8spring3hibernate3_5_1_annotation_XML都有

    Spring框架是企业级应用的支柱,它涵盖了依赖注入(DI)、面向切面编程(AOP)、数据访问、事务管理等多个领域。Spring3中,你可以使用注解如@Service、@Repository、@Controller来标记类的作用,简化配置。此外,...

    SpringIOC_SpringMVC_SpringAnnotation_JPA

    标题 "SpringIOC_SpringMVC_SpringAnnotation_JPA" 涵盖了四个核心的Java开发框架技术,它们是Spring框架的重要组成部分。Spring框架是一个全面的企业级应用开发框架,提供了许多功能,包括依赖注入(Dependency ...

    Spring_aop_annotation.zip

    在Spring中,AOP主要用来处理系统级服务,如事务管理、日志记录等,通过切面将这些关注点与业务逻辑解耦。 二、基于注解的AOP配置 本项目采用注解的方式进行AOP配置,相对于XML配置,注解方式更加简洁直观。在...

    spring3、 hibernate4 配置声明式事务管理(annotation方式)

    在Spring的配置文件中,我们需要添加`&lt;tx:annotation-driven&gt;`元素来启用基于注解的事务管理,并指定事务管理器。例如: ```xml &lt;bean id="transactionManager" class="org.springframework.orm.hibernate4....

    s2sh_annotation.rar_S2SH annotation_s2sh_s2sh_annotation

    Struts2+Spring+Hibernate(S2SH)是一种常见的Java Web开发框架组合,它整合了三个强大的开源框架:Struts2作为MVC框架处理请求和视图,Spring提供依赖注入和事务管理,Hibernate则作为对象关系映射工具处理数据库...

    学习Spring笔记_Annotation(注解)_Component

    在Spring配置文件中,可以使用 `&lt;context:component-scan&gt;` 标签指定需要扫描的包,这样Spring就会在这些包及其子包中查找标记了相应注解的类。 3. **依赖注入(Dependency Injection,DI)**:Spring通过注解实现...

    spring3.0两种事务管理配置

    这种方法只需要在 Spring 配置文件中定义一个事务管理对象(如 DataSourceTransactionManager),然后加入 `&lt;tx:annotation-driven/&gt;` 节点,引用该事务管理对象,然后即可在需要进行事务处理的类和方法使用 `@...

    spring3+hibernate4配置声明式事务管理(annotation方式)

    8. **整合步骤**:创建Spring配置,配置数据源、SessionFactory、事务管理器;在Hibernate实体类上添加`@Entity`等注解;在DAO或Service层方法上添加`@Transactional`注解;最后,启动Spring容器并运行应用,事务...

    struts+hibernate+spring事务配置_花粉册.rar

    Struts、Hibernate和Spring是Java开发中常用的三大框架,它们分别负责表现层、持久层和业务层的管理。...合理地配置事务管理,能有效保证系统的稳定性和数据一致性,是Java企业级开发中的重要一环。

    spring3,hibernate4 配置声明式事务管理(annotation方式)

    最后,我们可以在测试类中使用`@RunWith(SpringJUnit4ClassRunner.class)`和`@ContextConfiguration`注解来加载Spring配置,并进行事务相关的测试。 总的来说,Spring 3和Hibernate 4结合使用声明式事务管理,使得...

    实验 spring 声明事务

    -- 配置事务管理器 --&gt; &lt;bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"&gt; &lt;!-- 启用基于注解的事务管理 --&gt; &lt;tx:annotation-driven transaction-...

    spring配置事务五种方式.doc

    本文将详细介绍Spring配置事务的五种方法,每种方法都基于相同的基本组件:DataSource、TransactionManager以及代理机制。理解这些配置方式有助于更好地控制事务在应用程序中的行为。 1. **每个Bean都有一个代理** ...

    详解Spring配置事务的五种方式

    本文将详细介绍Spring配置事务的五种方式,以便开发者们更好地理解和应用。 首先,Spring配置事务通常涉及三个关键组件: 1. **DataSource**:数据源,它是连接到数据库的桥梁,负责管理数据库连接。在使用...

Global site tag (gtag.js) - Google Analytics