- 浏览: 83676 次
文章分类
- 全部博客 (32)
- java (32)
- java.lang.IncompatibleClassChangeError (1)
- mysql concat函数 字符串连接 (1)
- Java网络编程 (1)
- ActiveMQ中消息游标 (1)
- applicationContext-hibernate-transaction.xml (1)
- Google Chrome浏览器必备插件(附:Firefox火狐浏览器必备插件) (1)
- Oracle数据库文档构造器--Oraschemadoc (1)
- solaris essential (1)
- 使用Spring的test (1)
- org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are (1)
- 《代码之道》 (1)
- 三亚之行 (1)
- StatCVS 对使用CVS的项目进行深入统计的开源工具 (1)
- 读写PDF TIFF JPEG文件的JAVA类库 (1)
- 应用MapXtreme2004开发GIS代码(C#) 搜索TAB表中的元素 (1)
- 购物车的实现及结算处理[转] (1)
- 微软发布搜索引擎 兼谈几个搜索引擎的比较 (1)
- 对于嵌入式系统的学习 应该可以告一段落了 (1)
- 移动审批工作流设计与实现 (1)
- SIFT算法概述 (1)
- 腾讯微博java(android) sdk 话题相关api详细介绍 (1)
- No configuration found. Configuring ehcache from ehcache-failsafe.xml (1)
- memcached client -- spymemcached使用 (1)
- Simple XML (1)
- 空指针错误 java.lang.NullPointerException (1)
- 服务器重起 (1)
- Spring中Quartz的Cron表达式详解 (1)
- swt 开发 (1)
- res.sendRedirect()和req.getRequestDispatcher().forward(req (1)
- res)的区别 (1)
- JAVA类设计技巧 (1)
- java之socket编程之谈 (1)
- 总结一下iteye上的足迹 (1)
最新评论
applicationContext-hibernate-transaction.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: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.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<!-- 用注解来实现事务管理 -->
<tx:annotation-driven transaction-manager="transactionManager"/>
<!-- 定义切面实现事物管理 -->
<tx:advice id="baseTxAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="insert*" />
<tx:method name="save*" />
<tx:method name="add*" />
<tx:method name="update*" />
<tx:method name="modify*"/>
<tx:method name="delete*" />
<tx:method name="reg*" />
<tx:method name="release*" />
<tx:method name="leave*" />
<tx:method name="reply*" />
<tx:method name="generate*" />
<tx:method name="init*" />
<tx:method name="get*" />
<tx:method name="find*" />
<tx:method name="create*" />
<tx:method name="*" read-only="true" />
</tx:attributes>
</tx:advice>
<aop:config>
<aop:pointcut id="baseService" expression="execution(* com.cs.service..*.*(..))"/>
<aop:advisor advice-ref="baseTxAdvice" pointcut-ref="baseService"/>
</aop:config>
</beans>
发表评论
-
总结一下iteye上的足迹
2012-02-08 14:57 791<span style="bac ... -
java之socket编程之谈
2012-02-08 13:43 954<span style="col ... -
JAVA类设计技巧
2012-02-04 15:24 8841.一定要将数据设计为private 2.一定要 ... -
res.sendRedirect()和req.getRequestDispatcher().forward(req,res)的区别
2012-02-04 11:34 3268res.sendRedirect()=重定向 ... -
swt 开发
2012-02-03 17:14 9511. 下载 eclipse 3.7 2. 安装 goo ... -
Spring中Quartz的Cron表达式详解
2012-02-03 15:39 909<table style="& ... -
服务器重起
2012-02-03 14:54 635内报:141 外报:143,133 ? 外服:128 ... -
空指针错误 java.lang.NullPointerException
2012-02-02 14:44 930使用 ... -
Simple XML
2012-02-01 10:04 958<p style=""> ... -
memcached client -- spymemcached使用
2012-02-01 09:49 1338<a href="http://blo ... -
No configuration found. Configuring ehcache from ehcache-failsafe.xml
2011-12-28 13:23 1124<span style="font-f ... -
腾讯微博java(android) sdk 话题相关api详细介绍
2011-12-28 11:39 787<span style="font-f ... -
SIFT算法概述
2011-12-21 09:44 1001<span></span> & ... -
移动审批工作流设计与实现
2011-12-20 10:59 1175<p style="text-ind ... -
对于嵌入式系统的学习 应该可以告一段落了
2011-12-19 10:19 732最近看了些关于嵌入式系统的资料,脑袋里对嵌入式开发的概 ... -
微软发布搜索引擎 兼谈几个搜索引擎的比较
2011-12-17 10:44 832微软于昨天(11月11日)正式发布其搜索引擎。这个是网 ... -
购物车的实现及结算处理[转]
2011-12-16 17:07 2695注:此文章来自CSDN。觉得代码挺清晰的,而且可能很多 ... -
应用MapXtreme2004开发GIS代码(C#) 搜索TAB表中的元素
2011-12-15 12:09 944</span></span>& ... -
读写PDF TIFF JPEG文件的JAVA类库
2011-12-14 09:49 3049这几种常见文件格式的读写类库,有人收集好了,详见下面网 ... -
StatCVS 对使用CVS的项目进行深入统计的开源工具
2011-12-14 09:19 751这个工具很好,主要是分析cvs的log得出统计结果,以 ...
相关推荐
- 配置SessionFactory和Transaction Manager,这些通常在Spring的`applicationContext.xml`中完成。 4. **整合步骤**: - 将业务逻辑组件(Service)和DAO组件声明为Spring的bean,并通过注解或XML配置进行管理。...
**配置Transaction管理**:在`applicationContext.xml`中配置PlatformTransactionManager,选择合适的事务管理策略,如DataSourceTransactionManager(适用于JDBC)或HibernateTransactionManager(适用于Hibernate...
- 在Spring的配置文件(如`applicationContext.xml`)中,创建`LocalSessionFactoryBean` bean,指定数据库连接信息、实体类扫描路径等。例如: ```xml <bean id="sessionFactory" class="org.springframework....
Hibernate通过实体类、配置文件(hibernate.cfg.xml)和映射文件(.hbm.xml)来定义对象与表的对应关系,并提供了Session、Transaction和Query接口进行数据操作。 SSH框架的整合,使得开发人员能够更好地管理控制流...
15.2. Importing XML Configuration 16. Auto-configuration 16.1. Gradually Replacing Auto-configuration 16.2. Disabling Specific Auto-configuration Classes 17. Spring Beans and Dependency Injection 18. ...
3. **在`web.xml`中配置Hibernate**:在`WEB-INF/web.xml`中,我们需要添加一个初始化参数,指向`hibernate.cfg.xml`的位置。这样,当Tomcat启动时,可以通过这个参数加载Hibernate配置。例如: ```xml <web-app> ...
在实际的项目配置中,开发者需要确保所有依赖的jar包版本匹配,并正确地配置Struts2的配置文件(struts.xml)、Spring的配置文件(applicationContext.xml)以及Hibernate的配置文件(hibernate.cfg.xml)。...
<param-value>classpath:applicationContext*.xml</param-value> </context-param> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> ``` - **配置Struts ...
### SSH框架applicationContext.xml头部文件知识点解析 #### 一、SSH框架简介 SSH框架是Struts+Spring+Hibernate三个开源框架的组合,是中国开发者对这三个框架整合应用的一种简称。其中Struts负责MVC(Model-View-...
- **org.springframework.transaction-3.0.4.RELEASE.jar**:提供事务管理支持。 - **org.springframework.web-3.0.4.RELEASE.jar**:提供了Web应用支持,如Servlet容器集成。 - **org.springframework.web.portlet-...
3. **配置Spring**:编写Spring的配置文件(如`applicationContext.xml`),定义bean及其依赖。 4. **启动应用**:在Servlet容器中部署应用,启动服务器,运行Spring应用。 通过以上步骤,开发者可以开始使用Spring...
同时,还需要编写相关的配置文件,如struts.xml、hibernate.cfg.xml和applicationContext.xml,以定义Action、数据源、SessionFactory、DAO及Service等组件。最后,通过Spring管理Struts2的Action类,实现依赖注入,...
- 创建`applicationContext.xml`,配置Spring容器,如数据源、事务管理器、Hibernate的SessionFactory等。 - 将Struts2的Action类声明为Spring的bean,便于依赖注入。 - **Struts2与Hibernate结合**: - 在...
06. <param-value>classpath:applicationContext*.xml</param-value> 07. </context-param> 08. <listener> 09. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 10. ...
在项目中配置Spring MVC和Hibernate,你需要创建Spring的配置文件(如:applicationContext.xml)和Spring MVC的配置文件(如:servlet-context.xml)。在这些文件中,你会定义数据源、SessionFactory、事务管理器,...
ORM支持Hibernate、JPA等ORM框架,OXM支持对象XML映射,JMS处理消息队列,Transaction提供统一的事务管理。 3. **Web**:包含Web、Web-Servlet、Web-Portlet模块,用于构建Web应用程序。Web-Servlet是核心,提供了...
- 在Hibernate的配置文件(`hibernate.cfg.xml`)中,定义数据源、实体类和映射文件。 - 使用Spring的`LocalSessionFactoryBean`创建SessionFactory,并通过SessionFactory进行数据库操作。 5. **JAR包**: - `...
- **配置文件**:如struts.xml、spring.xml和hibernate.cfg.xml,配置各框架的运行参数。 - **web.xml**:设置过滤器和监听器,如Spring的ContextLoaderListener和Struts的FilterDispatcher。 - **注解使用**:利用...
2. **配置Spring**:创建一个Spring配置文件,例如`applicationContext.xml`,启用Annotation配置,使用`<context:component-scan>`元素扫描带有特定注解的类,同时配置数据源和Hibernate SessionFactory。...