首页 > 移动平台 > 详细

Spring Boot中配置文件application.properties里面配置项的引用

时间:2019-12-24 23:59:11      阅读:323      评论:0      收藏:0      [点我收藏+]

方法1:绑定对象bean调用

1、在application.properties或者application.yml里面添加我们的配置项:

技术分享图片

 

 

 2、创建一个配置类(该类和我们上面配置项的属性一一对应):

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component
@ConfigurationProperties(prefix = "upload")
public class PropertiesConfig {
    private  int port;

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }
}

3、在需要调用的地方自动装配上我们上面的类并按照下面的方式获得配置项的值:

@Controller
@RequestMapping("/update/send")
public class UpdateSendController extends BaseController {    
@Autowired
    private PropertiesConfig propertiesconfig;
    int port = propertiesconfig.getPort();
}

Spring Boot中配置文件application.properties里面配置项的引用

原文:https://www.cnblogs.com/luzhanshi/p/12093903.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!