@ConfigurationProperties注解
2022/1/3 23:10:17
本文主要是介绍@ConfigurationProperties注解,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
使用方式
1. @Component+@ConfigurationProperties
- 需要实现set/get方法
@ConfigurationProperties(prefix = "car") @Component public class Car { private String name; private Integer price; private Pet pet; // standard getters and setters }
2. @EnableConfigurationProperties + @ConfigurationProperties
@EnableConfigurationProperties开启对@ConfigurationProperties注解配置Bean的支持
也就是@EnableConfigurationProperties注解告诉Spring Boot 使能支持@ConfigurationProperties
配置类:
@Configuration @EnableConfigurationProperties(Car.class) public class MyConfig { @Bean("Tom") public Pet petBean() { return new Pet("cat"); } ...... }
普通类(需要读取配置文件)
@ConfigurationProperties(prefix = "car") public class Car { private String name; private Integer price; private Pet pet; // standard getters and setters }
这篇关于@ConfigurationProperties注解的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26RocketMQ入门指南:搭建与使用全流程详解
- 2024-11-26RocketMQ入门教程:轻松搭建与使用指南
- 2024-11-26手写RocketMQ:从入门到实践的简单教程
- 2024-11-25【机器学习(二)】分类和回归任务-决策树(Decision Tree,DT)算法-Sentosa_DSML社区版
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享