springboot之additional-spring-configuration-metadata.json自定义提示
springboot之additional-spring-configuration-metadata.json自定义提示
简介
additional-spring-configuration-metadata.json
、spring-configuration-metadata.json
在springboot-starter
官方项目或第三方starter
项目中随处可见,那它起的作用是什么?让我们一起探讨一下。
官方文章
官方一篇文章很详细讲解了configuration metadata
的作用。
有兴趣的小伙伴可以查看下(配置元数据)。
configuration metadata
appendix b. configuration metadata spring boot jars include metadata files that provide details of all supported configuration properties. the files are designed to let ide developers offer contextual help and “code completion” as users are working with application.properties or application.yml files. the majority of the metadata file is generated automatically at compile time by processing all items annotated with @configurationproperties. however, it is possible to write part of the metadata manually for corner cases or more advanced use cases.
简介说明配置additional-spring-configuration-metadata.json
文件后,在开发人员的ide工具使用个人编写的配置读取很有效的在application.properties
或application.yml
文件下完成提示。
使用
1. 元数据格式
配置元数据文件位于jar下面。 meta-inf/spring-configuration-metadata.json
它们使用简单的json格式,其中的项目分类在“groups”或“properties”下,其他值提示分类在“hints”下,如下例所示:
{"groups": [ { "name": "server", "type": "org.springframework.boot.autoconfigure.web.serverproperties", "sourcetype": "org.springframework.boot.autoconfigure.web.serverproperties" } ... ],"properties": [ { "name": "server.port", "type": "java.lang.integer", "sourcetype": "org.springframework.boot.autoconfigure.web.serverproperties" } ... ],"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." } ] } ]}
2.properties
提示编写
当然了我们需要编写
meta-inf/additional-spring-configuration-metadata.json
进行拓展。
下面简单创建一个starter
使用additional-spring-configuration-metadata.json
进行提示。
在resources/meta-inf
目录下创建additional-spring-configuration-metadata.json
内容大致如下:
{"properties": [ { "name": "swagger.basepackage", "type": "java.lang.string", "description": "文档扫描包路径。" }, { "name": "swagger.title", "type": "java.lang.string", "defaultvalue": "平台系统接口详情", "description": "title 如: 用户模块系统接口详情。" }, { "name": "swagger.description", "type": "java.lang.string", "defaultvalue": "在线文档", "description": "服务文件介绍。" }, { "name": "swagger.termsofserviceurl", "type": "java.lang.string", "defaultvalue": "https://www.test.com/", "description": "服务条款网址。" }, { "name": "swagger.version", "type": "java.lang.string", "defaultvalue": "v1.0", "description": "版本。" } ]}
大家参考下面properties
表格进行配置上的理解。
名称 | 类型 | 目的 |
---|---|---|
name | string | 属性的全名。名称采用小写的周期分隔形式(例如server.address)。此属性是强制性的。 |
type | string | 属性的数据类型的完整签名(例如java.lang.string),但也是完整的泛型类型(例如java.util.map<java.util.string,acme.myenum>)。您可以使用此属性来指导用户可以输入的值的类型。为了保持一致性,通过使用其包装对应项(例如,boolean变为java.lang.boolean)来指定基元的类型。请注意,此类可能是一个复杂类型,它从stringas绑定的值转换而来。如果类型未知,则可以省略。 |
description | string | 可以向用户显示的组的简短描述。如果没有可用的描述,则可以省略。建议描述为简短段落,第一行提供简明摘要。描述中的最后一行应以句点(.)结尾。 |
sourcetype | string | 贡献此属性的源的类名称。例如,如果属性来自带注释的类@configurationproperties,则此属性将包含该类的完全限定名称。如果源类型未知,则可以省略。 |
defaultvalue | object | 默认值,如果未指定属性,则使用该值。如果属性的类型是数组,则它可以是值数组。如果默认值未知,则可以省略。 |
deprecation
每个properties
元素的属性中包含的json对象可以包含以下属性:
名称 | 类型 | 目的 |
---|---|---|
level | string | 弃用级别,可以是warning(默认)或error。当属性具有warning弃用级别时,它仍应绑定在环境中。但是,当它具有error弃用级别时,该属性不再受管理且不受约束。 |
reason | string | 该属性被弃用的原因的简短描述。如果没有可用的原因,可以省略。建议描述为简短段落,第一行提供简明摘要。描述中的最后一行应以句点(.)结尾。 |
replacement | string | 替换此不推荐使用的属性的属性的全名。如果此属性没有替换,则可以省略。 |
对应的@configurationproperties
类如下:
@data @configurationproperties(swaggerproperties.prefix) public class swaggerproperties { public static final string prefix = "swagger"; /** * 文档扫描包路径 */ private string basepackage = ""; /** * title 如: 用户模块系统接口详情 */ private string title = "平台系统接口详情"; /** * 服务文件介绍 */ private string description = "在线文档"; /** * 服务条款网址 */ private string termsofserviceurl = "https://www.test.com/"; /** * 版本 */ private string version = "v1.0"; }
现在就可以在application.properties
文件里尝试提示。
总结
当然了,这个只是实现了简单的配置提示功能,其他的功能大家可以再次产考(配置元数据)文章进行学习。
示例代码地址:
推荐阅读
-
Android开发之自定义view实现通讯录列表A~Z字母提示效果【附demo源码下载】
-
SpringBoot整合SpringMVC之自定义JSON序列化器和反序列化器
-
springBoot之访问自定义静态资源(html)
-
Springboot学习笔记:添加自定义拦截器之验证签名
-
springboot之additional-spring-configuration-metadata.json自定义提示
-
Springboot之自定义全局异常处理的实现
-
SpringBoot之自定义Banner详解
-
我的springboot学习之自定义控制台输出的图案
-
Springboot疑难杂症(一) --关于自定义stater的yml无法提示的问题
-
《SpringBoot从入门到放弃》之第(二)篇——配置文件详解、自定义属性、随机数、多环境配置、日志文件配置