91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Spring中通過c3p0配置bean連接數據庫

發布時間:2021-05-23 16:10:11 來源:億速云 閱讀:367 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關怎么在Spring中通過c3p0配置bean連接數據庫,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

Spring配置bean連接數據庫兩種方法:

(1)直接在.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-4.3.xsd">
 
 
 <!-- 配置鏈接數據庫 -->
 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
 <property name="user" value="root"></property>
 <property name="password" value="wangjian"></property>
 <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
 <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/test?useUnicode=true&amp;characterEncoding=utf-8&amp;useSSL=false"></property>
 </bean>
 
</beans>

(2)將參數放在外部文件中,然后再讀入配置文件:

<?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-4.3.xsd">
 
 <!-- 導入屬性文件 -->
 
 <context:property-placeholder location="classpath:db.properties" />
 <!-- 使用外部化屬性文件的屬性 -->
 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
 <property name="user" value="${user}"></property>
 <property name="password" value="${password}"></property>
 <property name="driverClass" value="${driverclass}"></property>
 <property name="jdbcUrl" value="${jdbcurl}"></property>
 </bean>
 
 
</beans>

外部的配置文件:

user=root
password=wangjian
driverclass=com.mysql.jdbc.Driver
jdbcurl=jdbc:mysql://localhost:3306/test?useUnicode=true&amp;characterEncoding=utf-8&amp;useSSL=false

測試函數:

package com.primary.spring.beans.properties;
 
import java.sql.SQLException;
 
import javax.sql.DataSource;
 
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class Main {
 public static void main(String[] args) throws SQLException {
 
 ApplicationContext ctx = new ClassPathXmlApplicationContext("beans-properties.xml");
 
 DataSource dataSource = (DataSource) ctx.getBean("dataSource");
 System.out.println(dataSource.getConnection());
 
 }
}

測試結果:

怎么在Spring中通過c3p0配置bean連接數據庫

以上就是怎么在Spring中通過c3p0配置bean連接數據庫,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚远县| 大渡口区| 桃源县| 古丈县| 凤山市| 北京市| 扎鲁特旗| 宁河县| 九龙城区| 张北县| 大姚县| 柘荣县| 教育| 建水县| 五寨县| 商洛市| 成安县| 城固县| 收藏| 宁德市| 云安县| 高尔夫| 怀仁县| 明光市| 平度市| 南川市| 绥宁县| 桐乡市| 吉林省| 保定市| 临夏县| 安仁县| 磴口县| 白朗县| 安陆市| 乡宁县| 双桥区| 建昌县| 盐池县| 宝山区| 永寿县|