Spring学习日记5(JdbcTemplate)

Spring学习日记5(JdbcTemplate),第1张

Spring学习日记5(JdbcTemplate) JdbcTemplate开发步骤

导入spring-jdbc和spring-tx坐标

创建数据库表和实体

创建JdbcTemplate对象

JdbcTemplate jdbcTemplate = new JdbcTemplate();    

jdbcTemplate.setDataSource(dataSource);

可通过bean注入

执行数据库 *** 作

更新 *** 作:        

jdbcTemplate.update (sql,params)    

//测试修改 *** 作
   public void testUpdate(){
       jdbcTemplate.update("update account set money=? where name=?",1000,"tom");
}

查询 *** 作:        

jdbcTemplate.query (sql,Mapper,params)    查询全部

List accounts = jdbcTemplate.query("select * from account", new BeanPropertyRowMapper(Account.class));

jdbcTemplate.queryForObject(sql,Mapper,params) 查询单个

Account account = jdbcTemplate.queryForObject("select * from account where name=?", new BeanPropertyRowMapper(Account.class), "tom");
Long aLong = jdbcTemplate.queryForObject("select count(*) from account", Long.class);

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5437977.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存