Spring 中jdbcTemplate用法

方法一:
appplication-context文件配置

   
          
          
          
          
      
      
          
      
     //将jdbcTemplate属性注入
      
          
      
 

模型层省略(一个user)。。。
dao层;

 private JdbcTemplate jdbcTemplate;  
    public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {  
        this.jdbcTemplate = jdbcTemplate;  
    }  
}  
public void createTable(){
        
        jdbcTemplate.execute("create table user_table(id integer,firstName varchar(200),lastname varchar(200))");
    }
    
    public void updata(){
        jdbcTemplate.update("insert into user_table value(1,?,?)","meimei","han");
        jdbcTemplate.update("insert into user_table value(2,?,?)","daha","fu");
    }
    public int count(){
        return jdbcTemplate.queryForObject("select count(*) from user_table", Integer.class);
    }
    
    public List getUserList(){
        //RowMapper 用来封装数据库中的数据封装成用户定义的类
        
        String sql="select * from user_table";
        
        return this.jdbcTemplate.query(sql, new RowMapper(){

            public User mapRow(ResultSet rs, int rowNum) throws SQLException {
                User user=new User();
                user.setId(rs.getInt("id"));
                user.setFirstName(rs.getString("firstName"));
                user.setLasrName(rs.getString("lastNmae"));
                return user;    
            }
        }
                );
    }

方法二:

dataSource配置不变
//因为我们在dao层使用setter方法注入dataSource
  
         
  
 private JdbcTemplate jdbcTemplate;  
          
        //注入方法2  
        public void setDataSource(DataSource dataSource) {  
                     //此时我们直接new了一个jdbcTemplate实例所以不用配置bean
                   this.jdbcTemplate = new JdbcTemplate(dataSource);  
        }  

控制层:

ApplicationContext context=new ClassPathXmlApplicationContext("application-context.xml");
        
        JdbcTemplateDao test=context.getBean("jdbcTemplate",JdbcTemplateDao.class);
        test.createTable();
        
        List userList=test.getUserList();
        
        for(User u: userList){
            System.out.println(u.getId()+":"+u.getFirstName()+":"+u.getLasrName());
        }
        ((ConfigurableApplicationContext)context).close();

你可能感兴趣的:(Spring 中jdbcTemplate用法)