SpringBoot中.properties文件绑定

SpringBoot中.properties文件绑定,第1张

SpringBoot中.properties文件绑定 SpringBoot中.properties文件绑定 两种方式 1、方式一:@ConfigurationProperties + @Component
  • @ConfigurationProperties是springboot提供读取配置文件的一个注解
  • @component是spring中的一个注解,它的作用是实现bean的注入

示例:

@Data
@Component
@ConfigurationProperties(prefix = "mycar")
public class Car {
    private String brand;
    private Integer price;
}

application.properties文件

server.port=8080
mycar.brand=BYD
mycar.price=100000
debug=true


这里运行出来,就可以在页面上获取到 car的 值了

2、方式二:@EnableConfigurationProperties+ @ConfigurationProperties
  • @EnableConfigurationProperties注解的作用是:使 某个使用 @ConfigurationProperties 注解的类生效
  • @ConfigurationProperties是springboot提供读取配置文件的一个注解

示例:

@Data
//@Component
@ConfigurationProperties(prefix = "mycar")
public class Car {
    private String brand;
    private Integer price;
}

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

原文地址: http://outofmemory.cn/zaji/5433948.html

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

发表评论

登录后才能评论

评论列表(0条)

保存