码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2019-12-24 23:33:17      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:alt   config   自动   send   配置文件   col   code   component   turn   

方法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里面配置项的引用

标签:alt   config   自动   send   配置文件   col   code   component   turn   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!