1. 程式人生 > >Spring與JDBC的整合使用

Spring與JDBC的整合使用

事務 pda xml配置 使用 配置文件 整合 update.. text ext

1、JbdcTemplate,提供了編寫Dao的工具類

JdbcTemplate.update("update....",參數);

2、AOP事務管理,不需要在方法中追加事務提交和回滾。

3、提供了統一的異常處理

DataAccessException

4、Spring整合JDBC的步驟

(1)引入Spring相應的jar包(ioc,aop,jdbc等),數據庫驅動等,在src下添加applicationContext.xml配置文件

(2)編寫實體類

(3)編寫Dao組件

(4)在applicationContext.xml掃描Dao組件,並且註入JdbcTemplate對象

Spring與JDBC的整合使用