溫馨提示×

溫馨提示×

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

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

Spring實戰(zhàn)之屬性覆蓋占位符配置器用法示例

發(fā)布時間:2020-09-25 15:54:05 來源:腳本之家 閱讀:148 作者:cakincqm 欄目:編程語言

本文實例講述了Spring實戰(zhàn)之屬性覆蓋占位符配置器用法。分享給大家供大家參考,具體如下:

一 配置文件

<?xml version="1.0" encoding="GBK"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://www.springframework.org/schema/beans"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
   <!-- PropertyOverrideConfigurer是一個容器后處理器,它會讀取
   屬性文件信息,并用這些信息設(shè)置覆蓋Spring配置文件的數(shù)據(jù) -->
   <bean class=
   "org.springframework.beans.factory.config.PropertyOverrideConfigurer">
      <property name="locations">
        <list>
           <value>dbconn.properties</value>
           <!-- 如果有多個屬性文件,依次在下面列出來 -->
        </list>
      </property>
   </bean>
   <!-- 定義數(shù)據(jù)源Bean,使用C3P0數(shù)據(jù)源實現(xiàn),
      配置該Bean時沒有指定任何信息,但Properties文件里的
      信息將會直接覆蓋該Bean的屬性值 -->
   <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
      destroy-method="close"/>
</beans>

二 屬性文件

dataSource.driverClass=com.mysql.jdbc.Driver
dataSource.jdbcUrl=jdbc:mysql://localhost:3306/spring
dataSource.user=root
dataSource.password=32147

三 測試類

package lee;
import javax.sql.DataSource;
import java.sql.*;
import org.springframework.context.*;
import org.springframework.context.support.*;
public class BeanTest
{
  public static void main(String[] args)throws Exception
  {
    ApplicationContext ctx = new
      ClassPathXmlApplicationContext("beans.xml");
    DataSource ds = (DataSource)ctx.getBean("dataSource");
    Connection conn = ds.getConnection();
    PreparedStatement pstmt = conn.prepareStatement(
      "insert into news_inf value(null , ? , ?)");
    pstmt.setString(1 , "瘋狂Java講義3");
    pstmt.setString(2 , "瘋狂iOS講義3");
    pstmt.executeUpdate();
    pstmt.close();
    conn.close();
  }
}

四 測試結(jié)果

Spring實戰(zhàn)之屬性覆蓋占位符配置器用法示例

更多關(guān)于java相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Spring框架入門與進(jìn)階教程》、《Java數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Java操作DOM節(jié)點技巧總結(jié)》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》

希望本文所述對大家java程序設(shè)計有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI