SpringBoot @PropertySource與@ImportResource有什麼區別

前言

在SpringBoot中,對於JavaBean的屬性一般都綁定在配置文件中,比如application.properties/application.yml/application.yaml,這三個配置文件前面的優先級高於後面的,即對於同名屬性,前面的配置會覆蓋後面的配置文件。

當我們自己創建類,也想放到容器中,可以單獨建立文件,可以通過@PropertySource與@ImportResource這兩個註解來註入到Servlet容器中,就可以搞定不在主配置裡讀取,按照不同的功能模塊劃分出不同的配置文件。

前者適合yml、yaml格式,而@importResource則適用於xml文件格式,如beans.xml 可以把其註解到窗口中,不過要放在spring boot主配置文件頭部

@PropertySource

可以自定義配置文件名稱,不在默認配置文件中讀取值,多用於額外配置文件與實體屬性映射。

在從配置文件裡獲取值,與JavaBean做映射。存在一個問題,我們是從主配置(application.yml)裡讀取的。如果全部的配置都寫到application裡,那麼主配置就會顯得特別臃腫。為瞭按照不同模塊自定義不同的配置文件引入瞭@PropertySource

user.name=張三
user.age=24
[email protected]
user.address=xx省xx市xx區

JavaBean

@Data
@PropertySource(value = {"classpath:user.properties"})
@ConfigurationProperties(prefix = "user")
@Component
public class Person {
    private String name;
    private Integer age;
    private String email;
    private String address;
}

這樣一個註解(@PropertySource(value = {“classpath:person.properties”}))就可以搞定不在主配置裡讀取,按照不同的功能模塊劃分出不同的配置文件。

@ImportResource

一般情況下我們自定義的xml配置文件,默認情況下這個bean是不會加載到Spring容器中來的。需要@ImportResource註解將這個配置文件加載進來。

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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="UserService" class="com.boot.UserService"></bean>
<beans>

JavaBean

public class UserService {
}

修改啟動類

@SpringBootApplication
@ImportResource(locations = {"classpath:beans.xml"})
public class Springboot02ConfigApplication {
    public static void main(String[] args) {
        SpringApplication.run(Springboot02ConfigApplication.class, args);
    }
}

小結

@PropertySource 用於引入*.Properties或者 .yml 用於給javabean註入值

一般用在javabean的類名上

@ImportResource 用於引入.xml 類型的配置文件 在spring boot中已經被配置類(@Bean)替代 一般用於啟動類上

到此這篇關於SpringBoot @PropertySource與@ImportResource有什麼區別的文章就介紹到這瞭,更多相關SpringBoot @PropertySource內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: