SpringBoot 官方文档示例:

SpringBoot 官方文档示例:,第1张

一、在application.properties中定义属性:

my.firstName=amadeus1756
my.lastName=liu

二、定义实体类

package cn.edu.tju.domain;

public class AnotherComponent {
    private String firstName;
    private String lastName;

    public String getFirstName() {
        return firstName;
    }

    public void setFirstName(String firstName) {
        this.firstName = firstName;
    }

    public String getLastName() {
        return lastName;
    }

    public void setLastName(String lastName) {
        this.lastName = lastName;
    }
}

三、在配置类的bean定义中使用@ConfigurationProperties

package cn.edu.tju.config;

import cn.edu.tju.domain.AnotherComponent;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class AppConfig3 {
    @Bean
    @ConfigurationProperties(prefix = "my")
    public AnotherComponent getAnotherComponent(){
        return new AnotherComponent();
    }
}

四、在controller中注入上述bean,并使用

    @Autowired
    private AnotherComponent anotherComponent;



    @RequestMapping("getAnother")
    public String getAnother(){
        return anotherComponent.getFirstName();
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/789083.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-05
下一篇 2022-05-05

发表评论

登录后才能评论

评论列表(0条)

保存