springboot之a(chǎn)dditional-spring-configuration-metadata.json自定義提示
簡介
additional-spring-configuration-metadata.json
土至、spring-configuration-metadata.json
在springboot-starter
官方項目或第三方starter
項目中隨處可見,那它起的作用是什么?讓我們一起探討一下。
官方文章
官方一篇文章很詳細講解了Configuration Metadata
的作用。
有興趣的小伙伴可以查看下(配置元數(shù)據(jù))筋遭。
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
文件后,在開發(fā)人員的IDE工具使用個人編寫的配置讀取很有效的在application.properties
或application.yml
文件下完成提示。
使用
1. 元數(shù)據(jù)格式
配置元數(shù)據(jù)文件位于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
進行拓展。
下面簡單創(chuàng)建一個starter
使用additional-spring-configuration-metadata.json
進行提示惰说。
在resources/META-INF
目錄下創(chuàng)建additional-spring-configuration-metadata.json
內(nèi)容大致如下:
{"properties": [
{
"name": "swagger.basePackage",
"type": "java.lang.String",
"description": "文檔掃描包路徑磨德。"
},
{
"name": "swagger.title",
"type": "java.lang.String",
"defaultValue": "平臺系統(tǒng)接口詳情",
"description": "title 如: 用戶模塊系統(tǒng)接口詳情。"
},
{
"name": "swagger.description",
"type": "java.lang.String",
"defaultValue": "在線文檔",
"description": "服務(wù)文件介紹吆视。"
},
{
"name": "swagger.termsOfServiceUrl",
"type": "java.lang.String",
"defaultValue": "https://www.test.com/",
"description": "服務(wù)條款網(wǎng)址典挑。"
},
{
"name": "swagger.version",
"type": "java.lang.String",
"defaultValue": "V1.0",
"description": "版本。"
}
]}
大家參考下面properties
表格進行配置上的理解啦吧。
名稱 | 類型 | 目的 |
---|---|---|
name | String | 屬性的全名您觉。名稱采用小寫的周期分隔形式(例如server.address)。此屬性是強制性的授滓。 |
type | String | 屬性的數(shù)據(jù)類型的完整簽名(例如java.lang.String)琳水,但也是完整的泛型類型(例如java.util.Map<java.util.String,acme.MyEnum>)。您可以使用此屬性來指導(dǎo)用戶可以輸入的值的類型般堆。為了保持一致性在孝,通過使用其包裝對應(yīng)項(例如,boolean變?yōu)閖ava.lang.Boolean)來指定基元的類型淮摔。請注意浑玛,此類可能是一個復(fù)雜類型,它從Stringas綁定的值轉(zhuǎn)換而來噩咪。如果類型未知顾彰,則可以省略。 |
description | String | 可以向用戶顯示的組的簡短描述胃碾。如果沒有可用的描述涨享,則可以省略。建議描述為簡短段落仆百,第一行提供簡明摘要厕隧。描述中的最后一行應(yīng)以句點(.)結(jié)尾。 |
sourceType | String | 貢獻此屬性的源的類名稱。例如吁讨,如果屬性來自帶注釋的類@ConfigurationProperties髓迎,則此屬性將包含該類的完全限定名稱。如果源類型未知建丧,則可以省略排龄。 |
defaultValue | Object | 默認值,如果未指定屬性翎朱,則使用該值橄维。如果屬性的類型是數(shù)組,則它可以是值數(shù)組拴曲。如果默認值未知争舞,則可以省略。 |
deprecation
每個properties
元素的屬性中包含的JSON對象可以包含以下屬性:
名稱 | 類型 | 目的 |
---|---|---|
level | String | 棄用級別澈灼,可以是warning(默認)或error竞川。當屬性具有warning棄用級別時,它仍應(yīng)綁定在環(huán)境中叁熔。但是流译,當它具有error棄用級別時,該屬性不再受管理且不受約束者疤。 |
reason | String | 該屬性被棄用的原因的簡短描述福澡。如果沒有可用的原因,可以省略驹马。建議描述為簡短段落革砸,第一行提供簡明摘要。描述中的最后一行應(yīng)以句點(.)結(jié)尾糯累。 |
replacement | String | 替換此不推薦使用的屬性的屬性的全名算利。如果此屬性沒有替換,則可以省略泳姐。 |
對應(yīng)的@ConfigurationProperties
類如下:
@Data
@ConfigurationProperties(SwaggerProperties.PREFIX)
public class SwaggerProperties {
public static final String PREFIX = "swagger";
/**
* 文檔掃描包路徑
*/
private String basePackage = "";
/**
* title 如: 用戶模塊系統(tǒng)接口詳情
*/
private String title = "平臺系統(tǒng)接口詳情";
/**
* 服務(wù)文件介紹
*/
private String description = "在線文檔";
/**
* 服務(wù)條款網(wǎng)址
*/
private String termsOfServiceUrl = "https://www.test.com/";
/**
* 版本
*/
private String version = "V1.0";
}
現(xiàn)在就可以在application.properties
文件里嘗試提示效拭。
總結(jié)
當然了,這個只是實現(xiàn)了簡單的配置提示功能胖秒,其他的功能大家可以再次產(chǎn)考(配置元數(shù)據(jù))文章進行學(xué)習(xí)缎患。
示例代碼地址: swagger-spring-boot