Spring框架中提供了很多持久层的模板类来简化编程,使用模板类编写程序会变的简单,Spring框架提供的JdbcTemplate类,Connection 表示连接,管理事务 Statement ResultSet.
①创建maven工程,引入坐标
org.springframework
spring-context
5.0.2.RELEASE
commons-logging
commons-logging
1.2
log4j
log4j
1.2.12
junit
junit
4.12
org.springframework
spring-test
5.0.2.RELEASE
aopalliance
aopalliance
1.0
org.springframework
spring-aspects
5.0.2.RELEASE
org.aspectj
aspectjweaver
1.8.13
mysql
mysql-connector-java
5.1.6
org.springframework
spring-jdbc
5.0.2.RELEASE
org.springframework
spring-tx
5.0.2.RELEASE
②编写测试代码(用new对象的方式)
public class Demo1 {
@Test
public void run1(){
// 创建连接池对象,Spring框架内置了连接池对象
DriverManagerDataSource dataSource = new DriverManagerDataSource();
// 设置4个参数
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql:///数据库");
dataSource.setUsername("用户名");
dataSource.setPassword("密码");
// 提供模板,创建对象
JdbcTemplate template = new JdbcTemplate(dataSource);
// 完成数据的增删改查
template.update("insert into account values (null,?,?)","熊大",1000);
}}
①Spring管理内置连接池
②编写测试方法
@RunWith(SpringJUnit4ClassRunner.class)//单元测试
@ContextConfiguration("classpath:applicationContext5.xml")//加载配置文件
public class demo5 {
//按类型自动导入
@Autowired
private JdbcTemplate jdbcTemplate;
@Test
public void run1(){
//提供数据的增删改查
jdbcTemplate.update("insert into account values (null,?,?)","雄二",9989);
}
}
①导入Druid开源连接池
②将数据库连接的信息配置到属性文件(jdbc.properties)中
③核心配置改为
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(value = "classpath:applicationContext_jdbc.xml")
public class Demo1_1 {
@Autowired
private JdbcTemplate jdbcTemplate;
/**
* 测试的方式 增
*/
@Test
public void run1(){
jdbcTemplate.update("insert into account values (null,?,?)","熊四",800);
}
/**
* 修改
*/
@Test
public void run2(){
jdbcTemplate.update("update account set name = ?,money = ? where id = ?","光头强",100,7);
}
/**
* 删除
*/
@Test
public void run3(){
jdbcTemplate.update("delete from account where id = ?",7);
}
/**
* 通过id查询
*/
@Test
public void run4(){
Account account = jdbcTemplate.queryForObject("select * from account where id = ?", new BeanMapper(), 6);
System.out.println(account);
}
/**
* 查询所有的数据
*/
@Test
public void run5(){
List list = jdbcTemplate.query("select * from account", new BeanMapper());
for (Account account : list) {
System.out.println(account);
}
}
}
/**
* 实现类,用来进行数据封装的
*/
class BeanMapper implements RowMapper{
/**
* 是一行一行进行数据封装的
*/
@Override
public Account mapRow(ResultSet resultSet, int i) throws SQLException {
Account account = new Account();
account.setId(resultSet.getInt("id"));
account.setName(resultSet.getString("name"));
account.setMoney(resultSet.getDouble("money"));
return account;
}
}
首先搭建环境(maven工程 坐标)
接口:
public interface AccountService {
public void pay(String out,String in,double money);
}
实现类:
public class AccountServiceImpl implements AccountService {
private AccountDao accountDao;
public void setAccountDao(AccountDao accountDao) {
this.accountDao = accountDao;
}
//转账方法
@Override
public void pay(String out, String in, double money) {
// 调用dao方法
accountDao.outMoney(out,money);
accountDao.inMoney(in,money);
}
}
接口:
public interface AccountDao {
//付款
public void outMoney(String out,double money);
//收款
public void inMoney(String in,double money);
}
实现类:
public class AccountDaoImpl implements AccountDao {
private JdbcTemplate jdbcTemplate;
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
//付款
public void outMoney(String out, double money) {
jdbcTemplate.update("update account set money = money - ? where name = ?",money,out);
}
//收款
public void inMoney(String in, double money) {
jdbcTemplate.update("update account set money = money + ? where name = ?",money,in);
}
}
继承JdbcDaoSupport
约束同上
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(value = "classpath:配置文件")
public class Demo2 {
//按照类型自动导入
@Autowired
private AccountService accountService;
/**
* 测试转账的方法
*/
@Test
public void testPay(){
accountService.pay("熊大","熊二",100);
}
}
PlatformTransactionManager接口
平台事务管理器。该接口有具体的实现类,根据不同的持久层框架,需要选择不同的实现类!
接口方法如下:
void commit(TransactionStatus status)
void rollback(TransactionStatus status)
如果使用的Spring的JDBC模板或者MyBatis框架,需要选择DataSourceTransactionManager实现类
①配置文件留下,配置平台事务管理器的配置
②将service进行注入并@Transactional(isolation = Isolation.DEFAULT)
纯注解的目的就是替换所有的配置文件,但需要编写配置类
/**
* 配置类
* @author Administrator
*/
@Configuration //声明配置类
@ComponentScan(basePackages="cn.tx.demo6") //扫描
@EnableTransactionManagement // 开启事务注解
public class SpringConfig {
@Bean(name="dataSource")
public DataSource createDataSource() throws Exception{
// 创建连接池对象,Spring框架内置了连接池对象
DriverManagerDataSource dataSource = new DriverManagerDataSource();
// 设置4个参数
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql:///spring_db");
dataSource.setUsername("root");
dataSource.setPassword("root");
return dataSource;
}
/**
* 创建模板对象
* @return
*/
@Resource(name="dataSource") // 不仅可以作用在属性上,也可以作用方法上。
@Bean(name="jdbcTemplate") // 把JdbcTemplate保存到IOC容器中
public JdbcTemplate createJdbcTemplate(DataSource dataSource){
JdbcTemplate template = new JdbcTemplate(dataSource);
return template;
}
/**
* 创建平台事务管理器对象
* @param dataSource
* @return
*/
@Resource(name="dataSource")
@Bean(name="transactionManager")
public PlatformTransactionManager createTransactionManager(DataSource dataSource){
DataSourceTransactionManager manager = new DataSourceTransactionManager(dataSource);
return manager;
}
}