码迷,mamicode.com
首页 > 其他好文 > 详细

阿里巴巴的datasource

时间:2016-01-20 17:09:09      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

阿里巴巴的datasource:
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">

结合使用spring的jdbcTemplate
@Autowired
DruidDataSource dataSource;

jdbcTemplate = new JdbcTemplate(dataSource);
int rowCount = this.jdbcTemplate.queryForObject("select count(*) from price_base", Integer.class);

当前也可以使用spring的JdbcDaoSupport
具体参考:http://www.mkyong.com/spring/spring-jdbctemplate-jdbcdaosupport-examples/

阿里巴巴的datasource

标签:

原文地址:http://www.cnblogs.com/hui-blog/p/5145634.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!