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

溫馨提示×

溫馨提示×

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

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

Spring如何加載properties文件

發布時間:2022-06-13 10:25:23 來源:億速云 閱讀:166 作者:zzz 欄目:開發技術

這篇文章主要介紹“Spring如何加載properties文件”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Spring如何加載properties文件”文章能幫助大家解決問題。

spring第三方資源配置管理

  • DruidDataSource

  • ComboPooledDataSource

一、druid的資源配置管理

導入druid的坐標:

        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.1.16</version>
        </dependency>

App運行輸出druid:

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
import javax.sql.DataSource;
 
public class App {
    public static void main(String[] args) {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        DataSource dataSource = (DataSource) ctx.getBean("dataSource");
        System.out.println(dataSource);
 
    }
}

applicationContext.xml配置:

配置數據源對象作為spring管理的bean

<!--    管理DruidDataSource對象-->
   <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
           <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
           <property name="url" value="jdbc:mysql://localhost:3306/spring_db"/>
           <property name="username" value="root"/>
           <property name="password" value="root"/>
   </bean>

執行結果:

Spring如何加載properties文件

二、c3p0資源配置管理

maven遠程倉庫中找:

導入c3p0的坐標:

        <dependency>
            <groupId>c3p0</groupId>
            <artifactId>c3p0</artifactId>
            <version>0.9.1.2</version>
        </dependency>

c3p0還需要mysql的驅動,導入mysql的坐標:

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.47</version>
        </dependency>

App運行輸出與上面的一樣。

applicationContext.xml配置:

  <!--c3p0連接池對象-->
       <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
           <property name="driverClass" value="com.mysql.jdbc.Driver"/>
           <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/spring_db"/>
           <property name="user" value="root"/>
           <property name="password" value="root"/>
           <property name="maxPoolSize" value="1000"/>
       </bean>

也可以配置最大連接對象和其他需要配置數據。

執行結果:

Spring如何加載properties文件

三、加載properties文件

1、開啟context命名空間,總共5處標紅的地方需要修改為context。

<?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">

2、使用context命名空間,加載指定properties文件

<context:property-placeholder location="jdbc.properties"/>

properties配置文件,配置時要加jdbc,不然會和系統環境變量沖突,系統優先級高:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/spring_db
jdbc.username=root
jdbc.password=root

3、使用${ }讀取加載的properties文件中的屬性值

說明:idea自動識別${ }加載的屬性值,需要手工點擊才可以查閱原始書寫格式

<property name="driverClassName" value="${jdbc.driver}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>

不加載系統屬性

可通過此種方法不加載系統屬性,就不會和系統屬性沖突:

system-properties-mode屬性:是否加載系統屬性

<context:property-placeholder location="jdbc.properties" system-properties-mode="NEVER"/>

加載多個properties文件

用逗號分隔可加載多個properties文件:

<context:property-placeholder location="jdbc.properties,jdbc2.properties"/>

加載所有properties文件

<context:property-placeholder location="*.properties"/>

加載properties文件標準格式

classpath:*.properties:設置加載當前工程類路徑中的所有properties文件

<context:property-placeholder location="classpath:*.properties"/>

從類路徑或jar包中搜索并加載properties文件

classpath*:*.properties:設置加載當前工程類路徑和當前工程所依賴的所有jar包中的所有properties文件

<context:property-placeholder location="classpath*:*.properties"/>

關于“Spring如何加載properties文件”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

惠安县| 增城市| 孝昌县| 漾濞| 城步| 余干县| 孟津县| 台北县| 兴宁市| 藁城市| 玉溪市| 永和县| 临颍县| 山东| 交口县| 金沙县| 海林市| 江陵县| 拉萨市| 会宁县| 福州市| 舟山市| 安福县| 上杭县| 昔阳县| 无极县| 宜兰市| 岳池县| 福鼎市| 晋州市| 巫山县| 如皋市| 竹溪县| 称多县| 陇川县| 宁德市| 甘孜县| 新巴尔虎左旗| 专栏| 洛宁县| 信宜市|