spring-configuration-metadata.json 自定义配置文件提示
官方文档:https://docs.spring.io/spring-boot/docs/3.0.5/reference/html/configuration-metadata.html#appendix.configuration-metadata.format。有的时候需要在自定义的配置文件中用到对应的提示,一般在写 properties 或 yaml 文件的时候,这个时候就需要用到 Spri
有的时候需要在自定义的配置文件中用到对应的提示,一般在写 properties 或 yaml 文件的时候,这个时候就需要用到 SpringBoot 中的 spring-configuration-metadata.json
大部分元数据文件是在编译时通过处理所有带注释的项目自动生成的@ConfigurationProperties。但是,可以为其他情况或更高级的用例手动编写部分元数据
- 配置元数据文件在
META-INF/spring-configuration-metadata.json - 项目分类在“
groups”或“properties”下,其他值提示分类在“hints”下,如:
{"groups": [
{
"name": "server",
"type": "org.springframework.boot.autoconfigure.web.ServerProperties",
"sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties"
},
{
"name": "spring.jpa.hibernate",
"type": "org.springframework.boot.autoconfigure.orm.jpa.JpaProperties$Hibernate",
"sourceType": "org.springframework.boot.autoconfigure.orm.jpa.JpaProperties",
"sourceMethod": "getHibernate()"
}
...
],"properties": [
{
"name": "server.port",
"type": "java.lang.Integer",
"sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties"
},
{
"name": "server.address",
"type": "java.net.InetAddress",
"sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties"
},
{
"name": "spring.jpa.hibernate.ddl-auto",
"type": "java.lang.String",
"description": "DDL mode. This is actually a shortcut for the \"hibernate.hbm2ddl.auto\" property.",
"sourceType": "org.springframework.boot.autoconfigure.orm.jpa.JpaProperties$Hibernate"
}
...
],"hints": [
{
"name": "spring.jpa.hibernate.ddl-auto",
"values": [
{
"value": "none",
"description": "Disable DDL handling."
},
{
"value": "validate",
"description": "Validate the schema, make no changes to the database."
},
{
"value": "update",
"description": "Update the schema if necessary."
},
{
"value": "create",
"description": "Create the schema and destroy previous data."
},
{
"value": "create-drop",
"description": "Create and then destroy the schema at the end of the session."
}
]
}
]}
- “组”是更高级别的项目,本身不指定值,而是为属性提供上下文分组。
- 例如,
server.port和server.address属性是 server 组的一部分
不需要每个“属性”都有一个“组”。某些属性可能单独存在。
-
最后,“提示”是用于帮助用户配置给定属性的附加信息。例如,当开发人员配置
spring.jpa.hibernate.ddl-auto属性时,工具可以使用提示为none、validate、update、create和create-drop值提供一些提示选择 -
官方文档:https://docs.spring.io/spring-boot/docs/3.0.5/reference/html/configuration-metadata.html#appendix.configuration-metadata.format
-
注意引入:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐


所有评论(0)