Java使用路徑通配符加載Resource與profiles配置使用

序言

Spring提供了一種強大的Ant模式通配符匹配,能從一個路徑匹配一批資源。java

Ant路徑通配符

Ant路徑通配符支持「?」、「*」、「**」,注意通配符匹配不包括目錄分隔符「/」: spring

「?」:匹配一個字符,如「config?.xml」將匹配「config1.xml」;apache

「*」:匹配零個或多個字符串,如「cn/*/config.xml」將匹配「cn/javass/config.xml」,但不匹配匹配「cn/config.xml」;而「cn/config-*.xml」將匹配「cn/config-dao.xml」;api

「**」:匹配路徑中的零個或多個目錄,如「cn/**/config.xml」將匹配「cn /config.xml」,也匹配「cn/javass/spring/config.xml」;而「cn/javass/config-**.xml」將匹配「cn/javass/config-dao.xml」,即把「**」當作兩個「*」處理。maven

classpath和classpath*

Spring在加載類路徑資源時除了提供前綴「classpath:」的來支持加載一個Resource,還提供一個前綴「classpath*:」來支持加載全部匹配的類路徑Resource。 ui

1、「classpath」: 用於加載類路徑(包括jar包)中的一個且僅一個資源;對於多個匹配的也只返回一個,因此若是須要多個匹配的請考慮「classpath*:」前綴; 編碼

2、「classpath*」: 用於加載類路徑(包括jar包)中的全部匹配的資源。帶通配符的classpath使用「ClassLoader」的「Enumeration<URLgetResources(String name)」方法來查找通配符以前的資源,而後經過模式匹配來獲取匹配的資源。如「classpath:META-INF/*.LIST」將首先加載通配符以前的目錄「META-INF」,而後再遍歷路徑進行子路徑匹配從而獲取匹配的資源。spa

classpath用在哪裏

在編譯打包後的項目中,根目錄是META-INFBOOT-INF。這個時候,咱們能夠看到classes這個文件夾,它就是咱們要找的classpath。.net

這裏須要提一點是,此項目可能依賴底層的jar包,好比:api層須要引用dal層的jar包。想說的是全部依賴jar包中的classes是同一級別。插件

實例助理解:

此代碼在api層的jar包中。

此資源是在dal層的jar包中

profiles配置環境配置信息

<profiles>
        <profile>
            <!--prd env-->
            <id>prd</id>
            <properties>
                <profiles.active>prd</profiles.active>
            </properties>
        </profile>
        <profile>
            <!--local env-->
            <id>local</id>
            <properties>
                <profiles.active>local</profiles.active>
            </properties>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <!--UT env-->
            <id>ut</id>
            <properties>
                <profiles.active>ut</profiles.active>
            </properties>
        </profile>
        <profile>
            <!-- test env -->
            <id>test</id>
            <properties>
                <profiles.active>test</profiles.active>
            </properties>
        </profile>
    </profiles>

資源文件使用pom文件配置

@xx@圈起來或者${xx},內部是xml鏈式調用,以下:

激活不一樣環境需配置profiles.active,也能夠在pom文件的profiles中定義,仔細看上面的配置文件<activeByDefault> 節點 local是被設置爲激活的

spring.profiles.active=@profiles.active@
project.version=@project.parent.version@

如需正確解析,需在bulid中添加插件

<build>
        <plugins>            
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>3.1.0</version>
                <configuration>
                    <!-- 指定配置文件編碼 -->
                    <encoding>UTF-8</encoding>
                    <!-- 使用默認分隔符, ${xxx}或者@xxx@ -->
                    <useDefaultDelimiters>true</useDefaultDelimiters>
                </configuration>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <finalName>profit-monitor</finalName>
    </build>

四、激活profile

1)默認的激活

上面的profile配置中設置的默認的激活環境。以下面所示

<activeByDefault>true</activeByDefault> 

2)使用-P參數顯示激活一個profile

當咱們在進行Maven操做時就可使用-P參數顯示的指定當前激活的是哪個profile了。好比咱們須要在對項目進行打包的時候使用id爲dev的profile,咱們就能夠這樣作:

mvn package –Pdev

這裏假設dev是在settings.xml中使用dev標記的處於激活狀態的profile,那麼當咱們使用「-P !profile」的時候就表示在當前操做中該profile將不處於激活狀態。

總結

java資源加載沒完,還有不少吧的,如今沒時間,就這些。

相關文章
相關標籤/搜索