Example
In spring boot project, you have three warning with application.properties file:
btn.reporting=Reporting
btn.excel=Export Excel
max.nbr.line=12
Inside resources directory, you create META-INF directory.
Inside META-INF directory, you create : additional-spring-configuration-metadata.json file.
{"properties": [
{
"name": "btn.reporting",
"type": "java.lang.String",
"description": "'btn.reporting' ihm button to create reporting from datas"
},
{
"name": "btn.excel",
"type": "java.lang.String",
"description": "'btn.excel' ihm button to load datas from data base to create Excel file"
},
{
"name": "max.nbr.line",
"type": "java.lang.String",
"description": "'max.nbr.line' max number line to print in ihm"
}
]}