- 浏览: 465988 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
yuan_bin1990:
您好,请问下demo如何运行啊,准备研究研究,但不知道入口啊。 ...
ssh2(struts2+spring2.5+hibernate3.3)自动生成代码程序 -
luyulong:
[b][/b][i][/i][ ...
jQuery进度条插件 jQuery progressBar -
txin0814:
mark..
读取文件目录 -
vurses:
[align=center][color=red][size= ...
include 与 jsp:include区别 -
Roshan2:
http://lijiejava.iteye.com/blog ...
Spring AOP 入门实例
(1)springJdbcContext.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: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/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
- <description>springApp</description>
- <!-- dataSource for MySQL -->
- <bean id="dataSource"
- class="org.apache.commons.dbcp.BasicDataSource"
- destroy-method="close">
- <property name="driverClassName"
- value="com.mysql.jdbc.Driver" />
- <property name="url"
- value="jdbc:mysql://localhost:3306/springapp" />
- <property name="username" value="root" />
- <property name="password" value="****" />
- </bean>
- <bean id = "TransactionManager"
- class = "org.springframework.jdbc.datasource.DataSourceTransactionManager">
- <property name = "dataSource" ref="dataSource"/>
- </bean>
- <!--1:配置一个JdbcTemplate实例,并将这个“共享的”,“安全的”实例注入到不同的DAO类中去-->
- <bean id = "jdbcTemplate"
- class = "org.springframework.jdbc.core.JdbcTemplate">
- <property name = "dataSource" ref="dataSource"/>
- </bean>
- <bean id = "actorJdbcTemplateDao"
- class = "com.logcd.bo.dao.impl.ActorJdbcTemplateDaoImpl">
- <property name="jdbcTemplate" ref="jdbcTemplate"/>
- </bean>
- <!--2:将共享的DataSource实例注入到DAO中,JdbcTemplate实例在DataSource的setter方法中被创建-->
- <bean id = "actorEventDao"
- class = "com.logcd.bo.dao.impl.ActorEventDaoImpl">
- <property name = "dataSource" ref="dataSource"/>
- </bean>
- <!--利用了拦截器的原理。-->
- <bean id="transactionInterceptor"
- class="org.springframework.transaction.interceptor.TransactionInterceptor">
- <property name="transactionManager">
- <ref bean="transactionManager" />
- </property>
- <!-- 配置事务属性 -->
- <property name="transactionAttributes">
- <props>
- <prop key="delete*">PROPAGATION_REQUIRED</prop>
- <prop key="operate*">PROPAGATION_REQUIRED,-Exception</prop>
- <prop key="insert*">PROPAGATION_REQUIRED,-Exception</prop>
- <prop key="update*">PROPAGATION_REQUIRED,-Exception</prop>
- <prop key="save*">PROPAGATION_REQUIRED</prop>
- <prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
- </props>
- </property>
- </bean>
- <bean id="txProxy"
- class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
- <property name="beanNames">
- <list>
- <value>*Dao*</value><!--只是为了测试,一般为service-->
- </list>
- </property>
- <property name="interceptorNames">
- <list>
- <value>transactionInterceptor</value>
- </list>
- </property>
- </bean>
- </beans>
<?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/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> <description>springApp</description> <!-- dataSource for MySQL --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property name="url" value="jdbc:mysql://localhost:3306/springapp" /> <property name="username" value="root" /> <property name="password" value="****" /> </bean> <bean id = "TransactionManager" class = "org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name = "dataSource" ref="dataSource"/> </bean> <!--1:配置一个JdbcTemplate实例,并将这个“共享的”,“安全的”实例注入到不同的DAO类中去--> <bean id = "jdbcTemplate" class = "org.springframework.jdbc.core.JdbcTemplate"> <property name = "dataSource" ref="dataSource"/> </bean> <bean id = "actorJdbcTemplateDao" class = "com.logcd.bo.dao.impl.ActorJdbcTemplateDaoImpl"> <property name="jdbcTemplate" ref="jdbcTemplate"/> </bean> <!--2:将共享的DataSource实例注入到DAO中,JdbcTemplate实例在DataSource的setter方法中被创建--> <bean id = "actorEventDao" class = "com.logcd.bo.dao.impl.ActorEventDaoImpl"> <property name = "dataSource" ref="dataSource"/> </bean> <!--利用了拦截器的原理。--> <bean id="transactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor"> <property name="transactionManager"> <ref bean="transactionManager" /> </property> <!-- 配置事务属性 --> <property name="transactionAttributes"> <props> <prop key="delete*">PROPAGATION_REQUIRED</prop> <prop key="operate*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="insert*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="update*">PROPAGATION_REQUIRED,-Exception</prop> <prop key="save*">PROPAGATION_REQUIRED</prop> <prop key="find*">PROPAGATION_REQUIRED,readOnly</prop> </props> </property> </bean> <bean id="txProxy" class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"> <property name="beanNames"> <list> <value>*Dao*</value><!--只是为了测试,一般为service--> </list> </property> <property name="interceptorNames"> <list> <value>transactionInterceptor</value> </list> </property> </bean> </beans>
(2)接口:(以第二种方式定义DAO)
- package com.logcd.bo.dao;
- import java.util.List;
- import org.springframework.jdbc.support.KeyHolder;
- import com.logcd.bo.Actor;
- public interface ActorEventDao {
- /**
- * 根据SQL建表
- * @param sql
- */
- public void createTableBySQL(String sql);
- /**
- * 统计firstName相同的总数
- * @param firstName
- * @return
- */
- public int findCountOfActorsByFirstName(String firstName);
- /**
- * 插入记录并返回自动生成的主键Id
- * @param ps
- * @return
- */
- public KeyHolder insertActor(final Actor actor);
- /**
- * 用SimpleJdbcInsert插入一条记录:mysql测试成功
- */
- public long inserOneActor(Actor actor);
- /**
- * 插入/更新/删除数据
- * @param sql 有参数语句
- * @param obj 参数值数组
- */
- public int operateActor(String sql,Object[] obj);
- /**
- * 根据SQL查询记录总数
- * @param sql
- * @return
- */
- public int findRowCountBySQL(String sql);
- /**
- * 根据Id查找指定对象
- * @param id
- * @return
- */
- public Actor findActorById(long id);
- /**
- * 根据Id查找指定对象
- * @param id
- * @return
- */
- public Actor findActorByIdSimple(long id);
- /**
- * 返回所有对象
- * @return
- */
- public List findAllActors();
- /**
- * 批量更新
- * @param actors
- * @return
- */
- public int[] updateBatchActors(final List actors);
- /**
- * 批量更新
- * @param actors
- * @return
- */
- public int[] updateBatchActorsSimple(final List<Actor> actors);
- }
package com.logcd.bo.dao; import java.util.List; import org.springframework.jdbc.support.KeyHolder; import com.logcd.bo.Actor; public interface ActorEventDao { /** * 根据SQL建表 * @param sql */ public void createTableBySQL(String sql); /** * 统计firstName相同的总数 * @param firstName * @return */ public int findCountOfActorsByFirstName(String firstName); /** * 插入记录并返回自动生成的主键Id * @param ps * @return */ public KeyHolder insertActor(final Actor actor); /** * 用SimpleJdbcInsert插入一条记录:mysql测试成功 */ public long inserOneActor(Actor actor); /** * 插入/更新/删除数据 * @param sql 有参数语句 * @param obj 参数值数组 */ public int operateActor(String sql,Object[] obj); /** * 根据SQL查询记录总数 * @param sql * @return */ public int findRowCountBySQL(String sql); /** * 根据Id查找指定对象 * @param id * @return */ public Actor findActorById(long id); /** * 根据Id查找指定对象 * @param id * @return */ public Actor findActorByIdSimple(long id); /** * 返回所有对象 * @return */ public List findAllActors(); /** * 批量更新 * @param actors * @return */ public int[] updateBatchActors(final List actors); /** * 批量更新 * @param actors * @return */ public int[] updateBatchActorsSimple(final List<Actor> actors); }
(3)接口实现
- package com.logcd.bo.dao.impl;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.util.List;
- import javax.sql.DataSource;
- import org.springframework.jdbc.core.JdbcTemplate;
- import org.springframework.jdbc.core.PreparedStatementCreator;
- import org.springframework.jdbc.core.RowMapper;
- import org.springframework.jdbc.support.GeneratedKeyHolder;
- import org.springframework.jdbc.support.KeyHolder;
- import com.logcd.bo.Actor;
- import com.logcd.bo.dao.ActorEventDao;
- public class ActorEventDaoImpl implements ActorEventDao{
- private JdbcTemplate jdbcTemplate;
- //NamedParameterJdbcTemplate对JdbcTemplate封装,增加了命名参数特性
- private NamedParameterJdbcTemplate namedParameterJdbcTemplate;
- //SimpleJdbcTemplate对JdbcTemplate封装,某些特性要在java5以上才工作
- private SimpleJdbcTemplate simpleJdbcTemplate;
- //简化插入数据操作
- private SimpleJdbcInsert inserActor;
- public void setDataSource(DataSource dataSource){
- this.jdbcTemplate = new JdbcTemplate(dataSource);
- this.namedParameterJdbcTemplate = new NamedParameterJdbcTemplate(dataSource);
- this.simpleJdbcTemplate = new SimpleJdbcTemplate(dataSource);
- this.inserActor = new SimpleJdbcInsert(dataSource)
- .withTableName("actors")
- .usingColumns("first_name","last_name")//插入这些字段
- .usingGeneratedKeyColumns("id");//带回生成的id
- }
- /**
- * 用SimpleJdbcInsert插入一条记录
- */
- public long inserOneActor(Actor actor){
- Map<String,Object> parameters = new HashMap<String,Object>();
- parameters.put("first_name",actor.getFirstName());
- parameters.put("last_name",actor.getLastName());
- return inserActor.executeAndReturnKey(parameters).longValue();
- }
- /**
- * 统计firstName相同的总数
- * @param firstName
- * @return
- */
- public int findCountOfActorsByFirstName(String firstName){
- String sql="select count(0) from actors where first_name = :first_name";
- SqlParameterSource namedParameters = new MapSqlParameterSource("first_name",firstName);
- //Map namedParameter = Collections.singletonMap("first_name",firstName);
- //还有一种Bean封装的方式
- //SqlParameterSource namedParameters = new BeanPropertySqlParameterSource(exampleActor);
- return this.namedParameterJdbcTemplate.queryForInt(sql, namedParameters);
- }
- /**
- * 根据SQL建表
- * @param sql
- */
- public void createTableBySQL(String sql) {
- this.jdbcTemplate.execute(sql);
- }
- /**
- * 插入记录并返回自动生成的主键Id(MySQL中不行,Oracle可以)
- * @param ps
- * @return
- */
- public KeyHolder insertActor(final Actor actor){
- final String addSql = "insert into actors(first_name,last_name) values (?,?)";
- KeyHolder keyHolder = new GeneratedKeyHolder();
- this.jdbcTemplate.update(new PreparedStatementCreator(){
- public PreparedStatement createPreparedStatement(Connection conn) throws SQLException {
- PreparedStatement ps =
- conn.prepareStatement(addSql, new String[]{"id"});//返回id
- ps.setString(1, actor.getFirstName());
- ps.setString(2, actor.getLastName());
- return ps;
- }
- });
- System.out.println(keyHolder.getKey());
- return keyHolder;
- }
- /**
- * 插入/更新/删除数据
- * @param sql 有参数语句
- * @param obj 参数值数组
- */
- public int operateActor(String sql,Object[] obj){
- return this.jdbcTemplate.update(sql, obj);
- }
- /**
- * 根据SQL查询记录总数
- * @param sql
- * @return
- */
- public int findRowCountBySQL(String sql){
- return this.jdbcTemplate.queryForInt(sql);
- }
- /**
- * 根据Id查找指定对象
- * @param id
- * @return
- */
- public Actor findActorById(long id){
- Actor actor = (Actor) this.jdbcTemplate.queryForObject(
- "select id,first_name,last_name from actors where id = ?",
- new Object[]{new Long(id)},
- new RowMapper(){
- public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
- Actor act = new Actor();
- act.setId(rs.getLong("id"));
- act.setFirstName(rs.getString("first_name"));
- act.setLastName(rs.getString("last_Name"));
- return act;
- }
- });
- return actor;
- }
- /**
- * 根据Id查找指定对象
- * @param id
- * @return
- */
- public Actor findActorByIdSimple(long id){
- String sql = "select id,first_name,last_name from actors where id = ?";
- ParameterizedRowMapper<Actor> mapper = new ParameterizedRowMapper<Actor>(){
- //notice the return type with respect to java 5 covariant return types
- public Actor mapRow(ResultSet rs, int rowNum) throws SQLException {
- Actor act = new Actor();
- act.setId(rs.getLong("id"));
- act.setFirstName(rs.getString("first_name"));
- act.setLastName(rs.getString("last_Name"));
- return act;
- }
- };
- return this.simpleJdbcTemplate.queryForObject(sql, mapper, id);
- }
- /**
- * 返回所有对象
- * @return
- */
- public List findAllActors(){
- return this.jdbcTemplate.query(
- "select id,first_name,last_name from actors",
- new ActorMapper());
- }
- /**
- * 定义一个静态内部类,在Dao的方法中被共享
- * @author logcd
- */
- private static final class ActorMapper implements RowMapper{
- public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
- Actor act = new Actor();
- act.setId(rs.getLong("id"));
- act.setFirstName(rs.getString("first_name"));
- act.setLastName(rs.getString("last_Name"));
- return act;
- }
- }
- }
- /**
- * 批量更新
- * @param actors
- * @return
- */
- public int[] updateBatchActors(final List actors){
- int[] updateCounts =this.jdbcTemplate.batchUpdate(
- "update actors set first_name = ?, last_name = ? where id =? ",
- new BatchPreparedStatementSetter(){
- public int getBatchSize() {
- return actors.size();
- }
- public void setValues(PreparedStatement ps, int i) throws SQLException {
- ps.setString(1, ((Actor)actors.get(i)).getFirstName());
- ps.setString(2, ((Actor)actors.get(i)).getLastName());
- ps.setLong(3, ((Actor)actors.get(i)).getId());
- }
- });
- return updateCounts;
- }
- /**
- * 批量更新
- * @param actors
- * @return
- */
- public int[] updateBatchActorsSimple(final List<Actor> actors){
- //如果对象数组与占位符出现位置一一对应
- //SqlParameterSource[] batch = SqlParameterSourceUtils.createBatch(actors.toArray());
- List<Object[]> batch = new ArrayList<Object[]>();
- for(Actor actor:actors){
- Object[] values = new Object[]{//注意顺序
- actor.getFirstName(),
- actor.getLastName(),
- actor.getId()};
- batch.add(values);
- }
- int[] updateCounts = this.simpleJdbcTemplate.batchUpdate(
- "update actors set first_name = ?, last_name = ? where id =? ",
- batch);
- return updateCounts;
- }
package com.logcd.bo.dao.impl; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.List; import javax.sql.DataSource; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.jdbc.core.PreparedStatementCreator; import org.springframework.jdbc.core.RowMapper; import org.springframework.jdbc.support.GeneratedKeyHolder; import org.springframework.jdbc.support.KeyHolder; import com.logcd.bo.Actor; import com.logcd.bo.dao.ActorEventDao; public class ActorEventDaoImpl implements ActorEventDao{ private JdbcTemplate jdbcTemplate; //NamedParameterJdbcTemplate对JdbcTemplate封装,增加了命名参数特性 private NamedParameterJdbcTemplate namedParameterJdbcTemplate; //SimpleJdbcTemplate对JdbcTemplate封装,某些特性要在java5以上才工作 private SimpleJdbcTemplate simpleJdbcTemplate; //简化插入数据操作 private SimpleJdbcInsert inserActor; public void setDataSource(DataSource dataSource){ this.jdbcTemplate = new JdbcTemplate(dataSource); this.namedParameterJdbcTemplate = new Name发表评论
-
Spring AOP 入门实例
2011-09-26 13:42 1429以Struts2+Spring为例,要求必须在登录之后才能实现 ... -
Spring MVC blog
2011-09-14 11:15 0REST in Spring 3: @MVC Pos ... -
Spring REST 是什么
2011-09-06 16:41 993概述 REST是英文Repr ... -
Spring Rest
2011-09-06 16:31 3316由于下一版本的rapid-framwork需要集成spring ... -
spring 事务管理
2010-06-16 21:40 1011声明式的事务管理(Declarative transactio ... -
Spring2.X以AspectJ 式AOP 配置事务
2010-06-16 21:40 1068(1)配置: Spring的事务管理是通过AOP代理实 ... -
spring使用RMI暴露服务
2010-06-16 21:38 1644(1)定义接口: Java代码 pack ... -
Spring远程访问Web服务
2010-06-16 21:05 1039一、介绍 目前,Sp ... -
在SPRING中实现事务暂停
2010-06-11 14:00 966摘要 Spring框架是一个流行的基于轻量级控制反转容器的J ... -
Spring的事务属性意义------transactionAttributes
2010-05-25 08:56 922PROPAGATION_REQUIRED--支持当前事务,如果 ... -
spring java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter. <init>(Z)V
2010-05-20 17:57 1589因为cglib 包和asm包冲突 开始用的cglib包是cgl ... -
Spring整合webService xfire
2010-05-07 10:14 1663注意,需要下载Xfire1.2.6、spring2.0,hib ... -
实现JSON和POJO的相互转换
2010-04-25 22:14 1425import java.util.Collection; ... -
spring注解注入
2010-04-13 22:20 1763以前在使用spring是通过xml来注入的,每次增加一个ser ... -
关于spring 乱码经验
2009-12-29 13:47 1316spring 集成框架的乱码问题,真是搞了很久,下面我就提几点 ...
相关推荐
本教程将深入探讨如何使用基于注解的Spring JdbcTemplate进行数据库操作,特别适合初学者入门学习。 ### 1. Spring JdbcTemplate简介 Spring JdbcTemplate提供了一个面向对象的接口,用于执行SQL查询、更新和存储...
在这个实例工程中,我们将深入探讨Spring JdbcTemplate的基本使用、优势以及常见操作。 一、Spring JdbcTemplate简介 Spring JdbcTemplate的出现是为了弥补原生JDBC在编码上的繁琐,它通过模板方法模式,将SQL执行...
SpringJdbcTemplate能够自适应多种数据库,这是因为它的底层使用了JDBC的规范,而不同的数据库厂商都实现了JDBC API。这使得你可以使用相同的代码来连接MySQL、Oracle、PostgreSQL等不同类型的数据库,只需更换相应...
Struts2、Spring和Spring JDBC Template是Java Web开发中常用的三个框架,它们分别负责不同的职责。Struts2作为MVC(Model-View-Controller)框架,主要处理前端请求和业务逻辑;Spring则是一个全面的后端框架,提供...
总之,Spring JDBCTemplate结合连接池提供了一个高效且易于使用的数据库访问层,它降低了数据库操作的复杂性,同时也提升了系统的性能。正确配置和使用这些库,可以极大地优化我们的数据库应用程序。
`JdbcUtils.java`可能是提供了一些数据库连接和JdbcTemplate使用的辅助方法,如数据库连接池的配置,或者封装了JdbcTemplate的执行方法,以提高代码复用性。例如: ```java public class JdbcUtils { private ...
这样,整个应用就可以通过Spring的依赖注入机制来获取并使用JdbcTemplate实例。 例如,一个简单的`applicationContext.xml`配置片段可能如下: ```xml <bean id="dataSource" class="org.springframework.jdbc....
使用 Spring JdbcTemplate 调用 Oracle 存储过程实现 CRUD 在本文中,我们将讨论如何使用 Spring JdbcTemplate 调用 Oracle 存储过程来实现 CRUD(Create、Read、Update、Delete)操作。我们将首先编写 Oracle 存储...
Druid数据库连接池的SpringJDBCTemplate所需的jar包,Druid数据库连接池的SpringJDBCTemplate所需的jar包,Druid数据库连接池的SpringJDBCTemplate所需的jar包,Druid数据库连接池的SpringJDBCTemplate所需的jar包,...
JdbcTemplate使用PreparedStatement来执行SQL,自动防止SQL注入攻击,因为它会正确地转义参数值。 7. 错误处理 如果数据库操作失败,JdbcTemplate会抛出异常,如`DataAccessException`,使得我们可以快速定位并处理...
**Spring JdbcTemplate 使用指南** Spring框架中的JdbcTemplate是数据库操作的核心组件之一,它提供了一种简单、安全的方式来执行SQL查询和更新,而无需手动管理数据库连接。本指南将深入探讨JdbcTemplate的用法,...
模仿spring jdbcTemplate的粗略实现,只有很小的参考价值,如果是java初学者可以使用这个封装好的工具进行数据库操作,只需要在db.properties里配置好driver,url等信息
使用Spring的JdbcTemplate实现分页功能
Spring JdbcTemplate是Spring框架中用于简化数据库操作的一个重要组件,它是Spring对JDBC的轻量级封装,旨在提供一种结构良好、易于使用的SQL执行机制,同时保持了JDBC的灵活性。在本实例中,我们将深入探讨Spring ...
在本例中,我们将深入探讨Spring JdbcTemplate的工作原理、使用方式以及它的优点。 首先,JdbcTemplate的核心理念是通过预编译的SQL语句和参数绑定来防止SQL注入攻击,同时提供事务管理的支持。它提供了大量方法来...
spring JdbcTemplate query方法使用示例,欢迎下载借鉴
在Spring框架中,`JdbcTemplate`是一个用于简化JDBC编程的工具类,它采用了模板模式来分离数据库访问中的不变和可变部分,提供了一种更加健壮且易于使用的数据访问机制。`JdbcTemplate`负责处理资源的获取、关闭以及...
在Spring框架中,`JdbcTemplate`是用于简化Java数据库连接(JDBC)操作的一个核心组件。这个类提供了很多方法来执行SQL查询、更新语句,包括批处理操作。本篇文章将详细探讨`batchUpdate`方法及其在实际开发中的应用...
使用Spring的JdbcTemplate调用Oracle的存储过程
配制Spring事务和JdbcTemplate使用 配制Spring事务和JdbcTemplate使用