【示例】Spring中通过JdbcTemplate来实现数据库的操作

示例来源于《JavaEE轻量级企业应用实战(第四版)》

示例思路:通过对beans.xml的配置来实现ComboPooledDataSource类的自动注入和相关数据库连接信息的设置。使用之前记得先导入c3p0的相关包,以下是代码实现

beans.xml配置文件



    
    
    
    
    
    
    
    
    
    
        
        
            
            
            
            
        
    
    
    
        
        
        
        
    

NewsDao接口

package com.dao;

public interface NewsDao {
    public void insert(String title, String content);
}

NewsDaoImpl实现类

package com.dao.impl;

import javax.sql.DataSource;

import org.springframework.jdbc.core.JdbcTemplate;

import com.dao.NewsDao;
import com.mchange.v2.c3p0.ComboPooledDataSource;

public class NewsDaoImpl implements NewsDao {
    private ComboPooledDataSource dataSource;
    
    public void setDataSource(ComboPooledDataSource dataSource) {
        this.dataSource = dataSource;
    }

    @Override
    public void insert(String title, String content) {
        // TODO Auto-generated method stub
        JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
        jdbcTemplate.update("insert into news_inf values(null, ?, ?)", title, content);
        jdbcTemplate.update("insert into news_inf values(null, ?, ?)", title, content);
    }
}

测试代码

ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");
NewsDao newDao = applicationContext.getBean("newsDao", NewsDao.class);
newDao.insert("测试标题", "测试内容");

数据库设计

CREATE TABLE `news_inf` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `content` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

这样执行的时候就会自动在NewsDaoImpl类中自动注入dataSource,通过这个dataSource来获取JdbcTemplate,JdbcTemplate是一个Spring封装好的通过JDBC来操作数据库的类,之后使用update方法对数据库表进行操作(update可以支持新增、修改和删除操作)

Slience的CSDN博客
Slience的博客

你可能感兴趣的:(【示例】Spring中通过JdbcTemplate来实现数据库的操作)