阿里巴巴的datasource

时间:2022-05-08 12:34:57

阿里巴巴的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/