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的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: revi插件使用方法| 如何在Revit
- 下一篇: VMware15安装mac10.14