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

溫馨提示×

溫馨提示×

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

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

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

發布時間:2022-04-26 10:14:54 來源:億速云 閱讀:368 作者:iii 欄目:開發技術

本篇內容介紹了“SpringBoot中@ConfigurationProperties注解怎么實現配置綁定”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

properties配置文件如下:

human.name=Mr.Yu
human.age=21
human.gender=male

如何把properties里面的配置綁定到JavaBean里面,以前我們的做法如下:

public class PropertiesUtil {
    public static void getProperties(Person person) throws IOException {
        Properties properties = new Properties();
        properties.load(new FileInputStream("src/main/resources/demo.properties"));
        //得到配置文件key的名字
        Enumeration enumeration = properties.propertyNames();
        while (enumeration.hasMoreElements()){
            String key =(String)enumeration.nextElement();
            String value = properties.getProperty(key);
            System.out.println("key="+key+"——————value="+value);
            //封裝到JavaBean
            //以下內容省略
        }
    }
}

輸出結果:

key=human.name——————value=Mr.Yu
key=human.age——————value=21
key=human.gender——————value=male

Process finished with exit code 0

可以看到這個過程十分繁雜,但是在SpringBoot中這個過程將會變得非常簡單。

在SpringBoot中有如下3種方法:

1.@ConfigurationProperties注解+@Component(或@Controller或@Service或@Repository)注解

  • 只有在容器中的組件,才會擁有SpringBoot提供的強大功能,也就是如果我們需要使用到@ConfigurationProperties注解,那么我們首先要保證該對JavaBean對象在IoC容器中,所以需要用到Component注解來添加組件到容器中。

  • @ConfigurationProperties注解中prefix與value互相都是別名

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

  • 也就是說@ConfigurationProperties(value = "human")@ConfigurationProperties(prefix = "human")是一樣的

  • prefix和value指的是前綴的意思

代碼測試: properties配置文件:

human.name=Mr.Yu
human.age=21
human.gender=male

Person類:

@Component ////只有在容器中的組件,才會擁有SpringBoot提供的強大功能
@ConfigurationProperties(value = "human")
public class Person {
    public String name;
    public int age;
    public String gender;
    public Person() {
    }
    public Person(String name, int age, String gender) {
        this.name = name;
        this.age = age;
        this.gender = gender;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    public String getGender() {
        return gender;
    }
    public void setGender(String gender) {
        this.gender = gender;
    }
    @Override
    public String toString() {
        return "Person{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", gender='" + gender + '\'' +
                '}';
    }
}

測試類如下:

//@Controller
////@ResponseBody以字符串的方式寫給瀏覽器,而不是跳轉到某個頁面
//@ResponseBody
//@RestController =  @Controller +  @ResponseBody
@RestController
public class HelloController {
    //自動注入屬性
    @Autowired
    Person person;
    @RequestMapping("/person")
    public Person getPerson(){
        return person;
    }
}

測試結果:

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

@ConfigurationProperties注解+@EnableConfigurationProperties注解

這種方式@EnableConfigurationProperties注解一定要在配置類上寫,@EnableConfigurationProperties的意思是開啟屬性配置功能,開啟誰的屬性配置功能呢,因為我們上面的Person類想進行配置綁定,所以我們在后面加上參數Person.class:@EnableConfigurationProperties(Person.class)

@EnableConfigurationProperties(Person.class)的作用就是把這個Person組件注冊到容器中,對象的名稱為:human-com.ysw.boot.properties.Person 其中human是@ConfigurationProperties(value = "human")中前綴value的值

在Person類上還是有@ConfigurationProperties注解,這種方式把Person類上的@Component注解換成了配置類上的@EnableConfigurationProperties(Person.class)注解 

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

這種方式主要用在引用第三方包時,比如第三方包中有一個Person類,該類中沒有使用@Component,我們也不能夠給第三方包中的類加上@Component,這個時候就可以使用在配置類上加上@EnableConfigurationProperties注解的方法。

@ConfigurationProperties注解+@Import注解

  • 使用@Import給容器中自動創建出這個類型的組件、默認組件的名字就是全類名

  • @Import注解與2中的@ConfigurationProperties注解效果是一樣的

  • 只不過他們注冊到容器中的名稱不同:

    • @ConfigurationProperties注解注冊到容器中對象的名稱為:human-com.ysw.boot.properties.Person 其中human是@ConfigurationProperties(value = "human")中前綴value的值

    • @Import注解注冊到容器中對象的名稱為:com.ysw.boot.properties.Person

配置類: 

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

Person類: 

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

 測試類: 

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

 application.properties文件:

server.port=8888
human.name=Mr.Yu
human.age=21
human.gender=male222

測試結果:

SpringBoot中@ConfigurationProperties注解怎么實現配置綁定

“SpringBoot中@ConfigurationProperties注解怎么實現配置綁定”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

汕尾市| 镇江市| 高尔夫| 平原县| 南部县| 荣昌县| 长葛市| 驻马店市| 穆棱市| 肥乡县| 普宁市| 祁门县| 邯郸市| 瑞丽市| 屯留县| 高唐县| 湖南省| 河间市| 东台市| 靖西县| 唐海县| 青冈县| 辉南县| 抚州市| 宜丰县| 定南县| 塔河县| 读书| 博客| 谢通门县| 天水市| 杭锦后旗| 冀州市| 永登县| 措勤县| 宜宾县| 德化县| 中卫市| 新昌县| 高陵县| 河东区|