spring整合JDBC

spring整合JDBC

spring中提供了一個能夠操做數據庫的對象,對象封裝了jdbc技術。這個對象的名字就叫JDBCTemplate,JDBC模板對象。這個對象和DBUtils中的QueryRunner對象很是類似。java

準備工做

  • 導包
    • 4+2(4個核心包+2個日誌包)
    • spring-test、spring-aop(新版本須要)、junit4類庫
    • c3p0鏈接池、JDBC驅動包
    • spring-jdbc、spring-tx(須要spring事務包的支持)
  • 準備數據庫測試
  • 解決數據庫中文亂碼
    (jdbc:mysql:///springmvc?characterEncoding=utf-8)

spring整合JDBC中application.xml配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd ">

    <!--1將鏈接池交給spring容器管理  -->
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
        <property name="jdbcUrl" value="jdbc:mysql:///springmvc?characterEncoding=utf-8"></property>
        <property name="user" value="root"></property>
        <property name="password" value="123"></property>
    </bean>
    
    <!--2將JDBCTemplate放入spring容器  -->
    <bean name="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!--3將UserDao放入spring容器  -->
    <bean name="userDao" class="com.fei.a_jdbctemplate.UserDaoImpl">
        <property name="jt" ref="jdbcTemplate"></property>
    </bean>
    
</beans>

得到userDao對象的代碼

// 1建立容器對象
    ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
    // 2向容器要對象
    UserDao userDao = (UserDao) ac.getBean("userDao");

spring讀取外部數據庫鏈接配置文件(db.properties)

jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.jdbcUrl=jdbc:mysql:///springmvc?characterEncoding=utf-8
jdbc.user=root
jdbc.password=123
<!-- 告訴spring讓他去讀取db.properties配置文件 -->
    <context:property-placeholder location="classpath:db.properties"/>
    <!--1將鏈接池交給spring容器管理  -->
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
        <property name="user" value="${jdbc.user}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>
相關文章
相關標籤/搜索