<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.32</version>
</dependency>
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.1.2</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.10</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
@Configuration
@ComponentScan({"ox"})
@PropertySource("classpath:jdbc.properties")
public class SpringConfiguration {
// 1.数据连接信息
// jdbc.properties不能使用username这个key.spring占用了,所以要加前缀
@Value("${jdbc.driver}")
private String driver;
@Value("${jdbc.url}")
private String jdbcUrl;
@Value("${jdbc.username}")
private String username;
@Value("${jdbc.password}")
private String password;
/**
* 2.创建数据源
*/
@Bean
public ComboPooledDataSource comboPooledDataSource() throws PropertyVetoException {
ComboPooledDataSource dataSource = new ComboPooledDataSource();
dataSource.setDriverClass(driver);
dataSource.setJdbcUrl(jdbcUrl);
dataSource.setUser(username);
dataSource.setPassword(password);
return dataSource;
}
/**
* 3.创建jdbcTemplate
* 方法形参 自动注入
*/
@Bean
public JdbcTemplate jdbcTemplate(ComboPooledDataSource comboPooledDataSource){
return new JdbcTemplate(comboPooledDataSource);
}
}
a.聚合查询
@Test public void t01(){ Long count = jdbcTemplate.queryForObject( "select count(*) from account", Long.class); System.out.println("数据库有"+count+"条数据!"); }
b.查询单个数据
@Test public void t02(){ Account account = jdbcTemplate.queryForObject( "select * from account where name=?", new BeanPropertyRowMapper<Account>(Account.class), "张三"); System.out.println(account); }
c.查询多个
@Test public void t03(){ List<Account> accountList = jdbcTemplate.query( "select * from account", new BeanPropertyRowMapper<Account>(Account.class)); for (Account account : accountList) { System.out.println(account); } }
d.插入
@Test public void t04(){ Account account = new Account(); account.setName("王五"); account.setMoney(19.1d); int update = jdbcTemplate.update( "insert into account values(?,?)", account.getName(), account.getMoney()); System.out.println(update > 0 ? "success" : "fail"); }
e.修改
@Test public void t05(){ int update = jdbcTemplate.update( "update account set money = 100 where name = ?", "王五"); System.out.println(update > 0 ? "success" : "fail"); }
f.删除
@Test public void t06(){ int flag = jdbcTemplate.update( "delete from account where name =?", "王五"); System.out.println(flag > 0 ? "success" : "fail"); }
PlatformTransactionManager 接口是 spring 的事务管理器,它里面提供了我们常用的操作事务的方法。
一般使用实现类DataSourceTransactionManager或HibernateTransactionManager
TransactionDefinition 是事务的定义信息对象.定义了事务的隔离级别和传播行为
TransactionStatus 接口提供的是事务具体的运行状态
设置隔离级别,可以解决事务并发产生的问题,如脏读、不可重复读和虚读。
是什么:在配置文件中声明,用在 Spring 配置文件中声明式的处理事务来代替代码式的处理事务。
作用:事务管理不侵入开发的组件
底层:Spring 声明式事务控制底层就是AOP
<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/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--平台事务管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--事务增强配置-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*"/>
</tx:attributes>
</tx:advice>
<!--事务的aop增强-->
<aop:config>
<aop:pointcut id="myPointcut" expression="execution(* xxx.yyy.service.impl.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="myPointcut"></aop:advisor>
</aop:config>
<!--事务增强配置-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*"/>
</tx:attributes>
</tx:advice>
其中,tx:method 代表切点方法的事务参数的配置,例如:
<tx:method name="transfer" isolation="REPEATABLE_READ" propagation="REQUIRED" timeout="-1" read-only="false"/>
a.在需要事务控制的类或方法上添加@Transactional
b.在xml中开启事务的注解驱动
<tx:annotation-driven/>
- 使用 @Transactional 在需要进行事务控制的类或是方法上修饰,注解可用的属性同 xml 配置方式,例如隔离级别、传播行为等。
- 注解使用在类上,那么该类下的所有方法都使用同一套注解参数配置。
- 使用在方法上,不同的方法可以采用不同的事务参数配置。
- Xml配置文件中要开启事务的注解驱动
- 注解配置文件中开启事务注解驱动@EnableTransactionManagement
手机扫一扫
移动阅读更方便
你可能感兴趣的文章