文章目錄
- JdbcTemplate概述
- JdbcTemplate開發步驟
- Spring産生JdbcTemplate對象
- JdbcTemplate的常用操作
- 知識要點
JdbcTemplate概述
它是 spring 架構中提供的一個對象,是對原始繁瑣的Jdbc API對象的簡單封裝。spring 架構為我們提供了很多的操作模闆類。例如:操作關系型資料的JdbcTemplate 和 HibernateTemplate,操作nosql資料庫的RedisTemplate,操作消息隊列的 JmsTemplate 等等。
JdbcTemplate開發步驟
① 導入spring-jdbc和spring-tx坐标
② 建立資料庫表和實體
③ 建立JdbcTemplate對象
④ 執行資料庫操作
① 導入坐标
<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>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.3.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>5.3.1</version>
</dependency>
② 建立accout表和Accout實體
public class Account {
private String name;
private double money;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getMoney() {
return money;
}
public void setMoney(double money) {
this.money = money;
}
@Override
public String toString() {
return "Account{" +
"name='" + name + '\'' +
", money=" + money +
'}';
}
}
③ 建立JdbcTemplate對象
④ 執行資料庫操作
Spring産生JdbcTemplate對象
我們可以将 JdbcTemplate 的建立權交給 Spring,将資料源 DataSource 的建立權也交給 Spring,在Spring容器内部将資料源 DataSource 注入到 JdbcTemplate 模版對象中,配置如下:
jdbc.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test?characterEncoding=utf-8
jdbc.username=root
jdbc.password=root
<!-- 資料源對象-->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="${jdbc.driver}" />
<property name="jdbcUrl" value="${jdbc.url}" />
<property name="user" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>
<!-- jdbc模版對象-->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource" />
</bean>
從容器中獲得JdbcTemplate進行添加操作
@Test
// 測試 Spring 産生jdbcTemplate對象
public void test2() throws PropertyVetoException {
ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
JdbcTemplate jdbcTemplate = app.getBean(JdbcTemplate.class);
int row = jdbcTemplate.update("insert into account values(?, ?)", "lisi", 300);
System.out.println(row);
}
JdbcTemplate的常用操作
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class JdbcTemplateCURDTest {
@Autowired
private JdbcTemplate jdbcTemplate;
@Test
public void testQueryCount(){
String sql = "select count(*) from account";
Long count = jdbcTemplate.queryForObject(sql, Long.class);
System.out.println(count);
}
@Test
public void testQueryOne(){
String sql = "select * from account where name=?";
Account account = jdbcTemplate.queryForObject(sql, new BeanPropertyRowMapper<Account>(Account.class), "lisi");
System.out.println(account);
}
@Test
public void testQueryAll(){
String sql = "select * from account";
List<Account> accountList = jdbcTemplate.query(sql, new BeanPropertyRowMapper<Account>(Account.class));
System.out.println(accountList);
}
@Test
public void testUpate(){
int row = jdbcTemplate.update("update account set money=? where name=?", 100, "tom");
System.out.println(row);
}
@Test
public void testDelete(){
int row = jdbcTemplate.update("delete from account where name=?","tom");
System.out.println(row);
}
}