- 浏览: 187955 次
- 性别:
- 来自: 青岛
-
文章分类
- 全部博客 (117)
- java基础知识 (17)
- 技术积攒 (9)
- Oracle技术 (4)
- JSP技术 (6)
- Spring技术 (15)
- Linux技术 (6)
- Hibernate技术 (24)
- JPA技术 (1)
- Struts技术 (1)
- Struts2技术 (6)
- javascript知识 (4)
- myeclipse 使用技巧 (3)
- JavaEE技术 (2)
- JSTL (1)
- javamail技术 (1)
- jaf 技术 (1)
- 测试方法 (1)
- web技术积攒 (1)
- tomcat事项 (5)
- mysql使用 (1)
- 趣味题目 (2)
- 技术词汇 (1)
- EJB3.0 (2)
- weblogic 使用说明 (1)
- CSS (1)
最新评论
-
chenhao_java:
知识点五:依赖注入-自动装配依赖对象 -
黑白配:
为什么没有看见三个附件呢?
JavaMail jsp发送邮件 html格式 -
chunchong:
真晕,这样怎么能行呢
JAVA中防止SQL注入攻击类的源代码 -
Rod_johnson:
学习了!真不错
Hibernate:类继承的实现方式(二)--父子类各自一个表 -
erchong2011:
恩 很不错 学习了 简单
jsp页面自动跳转方式
spring2.5的事物管理,分为两种方式,一是基于注解方式的,而是基于配置文件方式的
一。基于注解方式
一。基于xml配置方式
配置文件
一。基于注解方式
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 声明式事物管理详解
2010-03-01 09:54 1010Spring声明式事务让我们从复杂的事务处理中得到解脱。使得我 ... -
spring注解详解
2010-03-01 09:18 42311.准备工作 (1)导入common- ... -
Hibernate+Spring彻底搞定Clob、Blob的存取
2009-09-10 10:26 1010Hibernate+Spring彻底搞定Clob、Blob的存 ... -
Spring Jms入门实例
2009-09-08 11:13 3669Spring JMS Spring框架提供了一 ... -
spring事务传播属性
2009-08-03 10:04 1459事务的传播行为和隔离级别[transaction behavi ... -
知识点八-2 :spring 2.5 事务属性
2009-06-02 16:04 2265spring事务的属性 1• ... -
Spring AOP
2009-06-01 16:12 1963AOP中的概念 Aspect(切面):指横切性关注点的抽象即 ... -
知识点七:Spring AOP技术
2009-05-27 14:42 1506Spring提供了两种切面使用方式,实际工作中我们可以选用其中 ... -
知识点六:自动扫描方式把组件纳入(注册到)spring容器中管理
2009-05-27 10:56 954前面我们都是使用XML的b ... -
知识点五:依赖注入-自动装配依赖对象
2009-05-27 10:42 1176对于自动装配,了解一下就可以,实际应用中并不被推荐使用。例子: ... -
知识点四:依赖注入-使用Field注入(用于注解方式)
2009-05-27 10:15 2137注入依赖对象可以采用 ... -
知识点三:Bean的初始化方法和销毁方法
2009-05-27 09:59 14121 在容器中注册的bean到 ... -
知识点二:详解Spring中bean的作用域
2009-05-27 09:55 806如何使用spring的作用域: <bea ... -
知识点一:spring之实例化bean
2009-05-27 09:17 1691最基本的: Xml代码 & ...
相关推荐
【详细知识点】 1. **IOC容器**:Spring的核心组成部分,负责对象的创建、管理及依赖注入。在"spring源代码解析(一):IOC容器.doc"中,讲解了如何通过XML配置或注解方式定义bean,以及容器如何解析配置并构建对象...
在Spring 2.5版本中,主要包含了以下几个关键知识点: 1. **依赖注入**:这是Spring的核心特性之一。通过DI,Spring容器管理对象的生命周期和对象之间的关系,而不是由对象自己来管理。这减少了代码间的耦合度,...
本文将深入探讨“Spring事物传播测试表”所涉及的知识点。 首先,理解事务是非常重要的。在数据库操作中,事务确保数据的一致性和完整性。例如,一组相关的数据库操作要么全部成功,要么全部失败,这就是事务的ACID...
知识点4: Spring AOP 实现日志功能 Spring AOP 提供了一个强大的日志功能,可以用于记录应用程序中的日志信息。在 Spring 配置文件中使用 aop 命名空间下的标签可以配置日志功能。例如,使用以下方式可以配置日志...
知识点八:心灵治愈交流平台的功能模块设计 心灵治愈交流平台的功能模块设计是指对平台的各个功能模块进行设计和实现。该平台的主要功能模块包括管理员管理、用户管理、心理咨询师管理、心灵专栏管理、压力测试管理...
知识点六:Spring Boot 框架在特困救助供养信息管理系统中的应用 * Spring Boot 框架是一个基于 Java 语言的开源框架,用于开发特困救助供养信息管理系统。 * Spring Boot 框架可以简化系统的开发和维护,提高系统...
这些只是Spring框架一部分的关键知识点,实际上Spring还有更多的功能,如Spring Boot、Spring Cloud等,它们都是基于Spring框架构建的高级工具,用于简化微服务开发和云应用部署。了解并熟练掌握Spring框架,将极大...
在Spring框架中,事务管理是核心功能之一,它允许开发者以声明式或编程式的方式处理应用中的事务。...通过理解这些知识点,我们可以更好地在Spring应用中管理和控制事务,确保系统数据的正确性和稳定性。
在讨论Spring Security的集成时,我们涉及的知识点主要包括: 1. **Spring Security基础**:Spring Security提供了多种安全特性,包括身份验证(登录、注册)、授权(访问控制)、会话管理以及CSRF(跨站请求伪造)...
Spring事务管理是Java开发中非常重要的一个概念,它在企业级应用中扮演着核心角色,确保数据的一致性和完整性。Spring提供了多种事务管理...了解并熟练掌握这些知识点对于任何使用Spring框架进行开发的人员都至关重要。
接下来,我们将深入探讨Spring事务支持的相关知识点。 首先,Spring事务管理分为编程式事务管理和声明式事务管理两种方式。 1. **编程式事务管理**:这是通过编程的方式来控制事务的边界。开发者可以使用`...
下面我们将详细探讨Spring 2.x的声明式事务配置及其相关知识点。 首先,`applicationContext.xml`是Spring的配置文件,其中包含了Spring容器的定义,包括Bean的定义、依赖注入以及事务管理的配置。在声明式事务配置...
1. Spring事物配置详解: 在Spring框架中,事务管理是核心功能之一,它允许开发者以声明式或编程式的方式来管理事务。声明式事务管理通过在XML配置文件或注解中定义事务边界,使得事务处理更加简洁。例如,可以使用...
【新北京课改版三年级下册小学英语全册单元知识点小结】 本资料详细总结了新北京课改版三年级下册小学英语教材全册的重要知识点,涵盖了词汇、句型和语法等多个方面,旨在帮助学生全面复习和巩固所学内容。 一、...
在"spring事物配置"中,Spring提供了声明式事务管理,这使得开发者无需在代码中手动处理事务的开始、提交、回滚等细节,而是通过配置来定义事务边界,极大地提升了代码的可读性和可维护性。 Spring JDBC模块是...
【中考英语总复习知识点梳理第15讲:八年级下Units 9-10】 本讲主要涵盖了八年级下学期英语的重要词汇和短语,旨在帮助2020届中考学生进行系统的复习和巩固。以下是详细的知识点: 1. 词汇: - camera:相机,...
标题《深圳小学英语四年级下册知识点复习.pdf》和描述《深圳小学英语四年级下册知识点复习.pdf》表明,本文是一份针对四年级学生下学期英语知识点的复习资料。根据提供的部分内容,可以提炼出以下知识点: 1. 常用...
以下是对这个整合过程的关键知识点的详细说明: 1. **Struts1**:作为MVC框架,Struts1主要负责处理HTTP请求,调度控制器,以及视图的呈现。在整合中,它通常会配置Action类,这些类对应特定的URL请求,执行业务...
Spring框架是Java开发中不可或缺的一部分,它以其强大的依赖注入(IOC)和面向切面编程(AOP)功能而...通过理解和应用这些知识点,开发者可以构建出高效、可扩展且易于维护的Java应用程序,尤其是在处理数据库交互时。