【spring-boot脱坑指南】@ConfigurationProperties 取消 locations 属性

Spring Boot 1.4之后取消了 ConfigurationProperties 的 locations 属性,无法指定属性资源的位置。
locations属性已被弃用

两种替代方案

第一种:

使用 @Component 注册为组件,然后使用 @PropertySource 指定资源位置。

@Component
@ConfigurationProperties(prefix = "book")
@PropertySource(value={"classpath:book.properties"})
public class Book {}

缺点:只能使用 application.properties,不能使用 application.yml

第二种:

新建 application-book.yml 文件,然后在 application.yml 中开启该属性文件

spring:
  profiles:
    active: book

***缺点:要按 SpringBoot 的规定的格式配置,即 application-XXX.yml ***

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值