這篇文章主要介紹“如何用spring創(chuàng)建ComboPooledDataSource和JdbcTemplate對象”,在日常操作中,相信很多人在如何用spring創(chuàng)建ComboPooledDataSource和JdbcTemplate對象問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何用spring創(chuàng)建ComboPooledDataSource和JdbcTemplate對象”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
創(chuàng)新互聯(lián)是一家專業(yè)提供羅江企業(yè)網(wǎng)站建設,專注與做網(wǎng)站、成都網(wǎng)站建設、H5技術、小程序制作等業(yè)務。10年已為羅江眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設公司優(yōu)惠進行中。
用spring 創(chuàng)建ComboPooledDataSource和JdbcTemplate對象
3.1添加ioc相關jar包
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.3.18.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>4.3.18.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3.18.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>4.3.18.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>4.3.18.RELEASE</version> </dependency>
3.2創(chuàng)建db.properties文件
driverClass=com.MySQL.jdbc.Driver url=jdbc:mysql://localhost:3306/ssm user=root password=123
3.3在applicationContext.xml文件中創(chuàng)建對象
<context:property-placeholder location="db.properties"></context:property-placeholder> <!-- 創(chuàng)建一個連接池對象 --> <bean id="comboPooledDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="driverClass" value="${driverClass}" /> <property name="jdbcUrl" value="${url}"/> <property name="user" value="${user}" /> <property name="password" value="${password}" /> </bean> <!-- 創(chuàng)建一個jdbcTemplate對象 并且通過構造函數(shù) 將連接池對象 注入到jdbcTemplate --> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" > <constructor-arg name="dataSource" ref="comboPooledDataSource" /> </bean>
3.4 修改dao 層
@Component public class UsersDao implements IUsersDao { //注入jdbcTemplate對象 @Autowired private JdbcTemplate jdbcTemplate; public JdbcTemplate getJdbcTemplate() { return jdbcTemplate; } public void setJdbcTemplate(JdbcTemplate jdbcTemplate) { this.jdbcTemplate = jdbcTemplate; } //update方法 (增 刪 改) @Override public void add(Users user) { String sql = "insert into users values(null,?,?)"; jdbcTemplate.update(sql, user.getUname(), user.getPassword()); }
3.5測試
@Test public void test() { ClassPathXmlApplicationContext applicationContext=new ClassPathXmlApplicationContext("applicationContext.xml"); IUsersDao usersDao= applicationContext.getBean("usersDao",IUsersDao.class); Users user=new Users("xiaowanglaoshi","123"); usersDao.add(user); }
到此,關于“如何用spring創(chuàng)建ComboPooledDataSource和JdbcTemplate對象”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)頁名稱:如何用spring創(chuàng)建ComboPooledDataSource和JdbcTemplate對象
文章源于:http://aaarwkj.com/article16/goosdg.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、網(wǎng)站維護、網(wǎng)站營銷、網(wǎng)站策劃、用戶體驗、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)