日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

spring-在配置文件中配置DAO时直接引用DataSource

發布時間:2023/12/10 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring-在配置文件中配置DAO时直接引用DataSource 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、創建spring項目
?? ?項目名稱:spring101306
二、在項目上添加jar包
?? ?1.在項目中創建lib目錄
?? ??? ?/lib
?? ?2.在lib目錄下添加spring支持
?? ??? ?commons-logging.jar
?? ??? ?junit-4.10.jar
?? ??? ?log4j.jar
?? ??? ?mysql-connector-java-5.1.18-bin.jar
?? ??? ?spring-beans-3.2.0.RELEASE.jar
?? ??? ?spring-context-3.2.0.RELEASE.jar
?? ??? ?spring-core-3.2.0.RELEASE.jar
?? ??? ?spring-expression-3.2.0.RELEASE.jar
?? ??? ?spring-jdbc-3.2.0.RELEASE.jar
?? ??? ?spring-tx-3.2.0.RELEASE.jar
?? ??? ?com.springsource.com.mchange.v2.c3p0-0.9.1.2.jar
三、在項目中添加配置文件與屬性文件
?? ?1.在項目中創建conf目錄
?? ?2.在conf目錄下添加屬性文件
?? ??? ?屬性文件名稱:jdbc.properties
?? ??? ?屬性文件內容:
?? ??? ?jdbc.url=jdbc:mysql://localhost:3306/spring
?? ??? ?jdbc.driver=com.mysql.jdbc.Driver
?? ??? ?jdbc.username=root
?? ??? ?jdbc.password=root
?? ?2.在conf目錄下添加spring核心配置文件
?? ??? ?配置文件名稱:applicationContext.xml
?? ??? ?配置文件內容:
?? ??? ?<?xml version="1.0" encoding="UTF-8"?>
?? ??? ?<beans xmlns="http://www.springframework.org/schema/beans"
?? ??? ??? ??? ??????? xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
?? ??? ??? ??? ??????? xmlns:context="http://www.springframework.org/schema/context"
?? ??? ??? ??? ??????? xsi:schemaLocation="
?? ??? ??? ??? ?http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
?? ??? ??? ??? ?http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
?? ??? ??? ??? ?
?? ??? ??? ??? ?<!-- 加載屬性文件 -->
?? ??? ??? ??? ?<context:property-placeholder location="classpath:jdbc.properties"/>
?? ??? ??? ??? ?
?? ??? ??? ??? ?<!-- 1.配置數據庫連接池 -->
?? ??? ??? ??? ?<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
?? ??? ??? ??? ??? ?<property name="jdbcUrl" value="${jdbc.url}"></property>
?? ??? ??? ??? ??? ?<property name="driverClass" value="${jdbc.driver}"></property>
?? ??? ??? ??? ??? ?<property name="user" value="${jdbc.username}"></property>
?? ??? ??? ??? ??? ?<property name="password" value="${jdbc.password}"></property>
?? ??? ??? ??? ?</bean>
?? ??? ?</beans>
四、實現bean設計
?? ?1.在src目錄下創建實體bean的包
?? ??? ?包名:cn.jbit.spring101306.domain
?? ?2.在包下創建實體bean
?? ??? ?public class Temp {
?? ??? ??? ?private Integer tempId;
?? ??? ??? ?private String tempName;
?? ??? ??? ?//省略get and set
?? ??? ?}
五、設計Dao層
?? ?1.在src目錄下創建dao層的包
?? ??? ?包名:cn.jbit.spring101306.dao
?? ?2.在包下創建dao層的接口與實現類
?? ??? ?1)接口設計
?? ??? ??? ?接口名稱:ITempDao.java
?? ??? ??? ?接口內容:
?? ??? ??? ?public interface ITempDao {
?? ??? ??? ??? ?public void save(Temp temp);
?? ??? ??? ?}
?? ??? ?2)接口實現類設計
?? ??? ??? ?實現類名稱:TempDaoImpl.java
?? ??? ??? ?實現類內容:
?? ??? ??? ?public class TempDaoImpl extends JdbcDaoSupport implements ITempDao {
?? ??? ??? ??? ?@Override
?? ??? ??? ??? ?public void save(Temp temp) {
?? ??? ??? ??? ??? ?this.getJdbcTemplate().update("insert into temp(tid,tname) values(?,?)",temp.getTempId(),temp.getTempName());
?? ??? ??? ??? ?}
?? ??? ??? ?}
六、在核心配置文件中配置Dao
?? ?<!-- 配置Dao -->
?? ?<bean id="tempdao" class="cn.jbit.spring101306.dao.TempDaoImpl">
?? ??? ?<!-- 為jdbcTemplate進行注入 -->
?? ??? ?<property name="dataSource" ref="dataSource"></property>?? ?
?? ?</bean>
七、測試
?? ?1.在項目上創建test目錄
?? ??? ?/test
?? ?2.在test目錄下創建測試包
?? ??? ?包名:cn.jbit.spring101301.dao
?? ?3.在測試包下創建測試類
?? ??? ?測試類名:JdbcTemplateDemo.java
?? ??? ?測試類的內容:
?? ??? ?public class JdbcTemplateDemo {
?? ??? ??? ?/**
?? ??? ??? ? * 使用spring jdbctemplate添加數據
?? ??? ??? ? */
?? ??? ??? ?@Test
?? ??? ??? ?public void testJdbcTemplate(){
?? ??? ??? ??? ?ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
?? ??? ??? ??? ?ITempDao tempDao = (ITempDao) context.getBean("tempdao");
?? ??? ??? ??? ?Temp temp = new Temp();
?? ??? ??? ??? ?temp.setTempId(8);
?? ??? ??? ??? ?temp.setTempName("guanyu");
?? ??? ??? ??? ?tempDao.save(temp);
?? ??? ??? ?}
?? ??? ?}

轉載于:https://blog.51cto.com/suyanzhu/1563395

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的spring-在配置文件中配置DAO时直接引用DataSource的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。