本篇文章为你整理了自动注入配置参数(自动注入配置参数设置方法)的详细内容,包含有自动注入配置参数是什么 自动注入配置参数设置方法 自动注入的几种方式 自动注入接口 自动注入配置参数,希望能帮助你了解 自动注入配置参数。
目录1. 简化版参考
1. 简化版
@EnableConfigurationProperties(CommonRedisProperties.class) 注解configuration类;
@ConfigurationProperties(prefix = "myserver")注解配置文件类,prefix标明配置文件的前缀;
public RedisTemplate String, Object getRedisTemplate(CommonRedisProperties properties, RedisConnectionFactory redisConnectionFactory) ,加到需要使用的参数中即可;
META-INF目录下添加additional-spring-configuration-metadata.json文件,格式如下
{
"groups": [
"name": "server",
"type": "com.huawei.workbenchcommon.redis.CommonRedisProperties",
"sourceType": "com.huawei.workbenchcommon.redis.CommonRedisProperties"
"properties": [
"name": "myserver.database",
"type": "java.lang.String",
"sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties"
[1] springboot doc configuration metadata
以上就是自动注入配置参数(自动注入配置参数设置方法)的详细内容,想要了解更多 自动注入配置参数的内容,请持续关注盛行IT软件开发工作室。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。