diff --git a/spring-boot-actuator/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot-actuator/src/main/resources/META-INF/additional-spring-configuration-metadata.json index 1343130007..a2ece36278 100644 --- a/spring-boot-actuator/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/spring-boot-actuator/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -1,60 +1,60 @@ {"properties": [ { "name": "endpoints.configprops.keys-to-sanitize", - "dataType": "java.lang.String", + "type": "java.lang.String", "sourceType": "org.springframework.boot.actuate.endpoint.ConfigurationPropertiesReportEndpoint", "description": "The keys that should be sanitize. Keys can be simple strings that the property ends with or regex expressions." }, { "name": "endpoints.env.keys-to-sanitize", - "dataType": "java.lang.String", + "type": "java.lang.String", "sourceType": "org.springframework.boot.actuate.endpoint.EnvironmentEndpoint", "description": "The keys that should be sanitize. Keys can be simple strings that the property ends with or regex expressions." }, { "name": "management.health.db.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable database health check.", "defaultValue": true }, { "name": "management.health.diskspace.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable disk space health check.", "defaultValue": true }, { "name": "management.health.mongo.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable MongoDB health check.", "defaultValue": true }, { "name": "management.health.rabbit.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable RabbitMQ health check.", "defaultValue": true }, { "name": "management.health.redis.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable Redis health check.", "defaultValue": true }, { "name": "management.health.solr.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable Solr health check.", "defaultValue": true }, { "name": "spring.git.properties", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "Resource reference to a generated git info properties file." }, { "name": "spring.pidfile", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "The location of the PID file to write (if ApplicationPidFileWriter is used).", "sourceType": "org.springframework.boot.actuate.system.ApplicationPidFileWriter" } diff --git a/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json index d16a04433f..cce825e425 100644 --- a/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -1,108 +1,108 @@ {"properties": [ { "name": "spring.aop.auto", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically adds @EnableAspectJAutoProxy.", "defaultValue": true }, { "name": "spring.aop.proxy-target-class", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false).", "defaultValue": false }, { "name": "spring.batch.job.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Execute all Spring Batch jobs in the context on startup.", "defaultValue": true }, { "name": "spring.dao.exceptiontranslation.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enables the PersistenceExceptionTranslationPostProcessor.", "defaultValue": true }, { "name": "spring.datasource.jmx-enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enables JMX support (if provided by the underlying pool).", "defaultValue": false }, { "name": "spring.data.elasticsearch.repositories.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically enable Elasticsearch repositories.", "defaultValue": true }, { "name": "spring.data.jpa.repositories.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically enable JPA repositories.", "defaultValue": true }, { "name": "spring.data.mongo.repositories.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically enable Mongo repositories.", "defaultValue": true }, { "name": "spring.data.solr.repositories.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically enable Solr repositories.", "defaultValue": true }, { "name": "spring.http.encoding.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable http encoding support.", "defaultValue": true }, { "name": "spring.jmx.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically expose management beans to the JMX domain", "defaultValue": true }, { "name": "spring.jpa.open-in-view", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically register OpenEntityManagerInViewInterceptor. Binds a JPA EntityManager to the thread for the entire processing of the request.", "defaultValue": true }, { "name": "spring.jta.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable JTA support.", "defaultValue": true }, { "name": "spring.mobile.devicedelegatingviewresolver.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable device view resolver.", "defaultValue": false }, { "name": "spring.mobile.sitepreference.enabled", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Enable SitePreferenceHandler.", "defaultValue": true }, { "name": "spring.social.auto-connection-views", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "description": "Automatically enable the connection status view for supported providers.", "defaultValue": false }, { "name": "spring.view.prefix", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "Spring MVC view prefix." }, { "name": "spring.view.suffix", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "Spring MVC view suffix." } ]} diff --git a/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json index 16ccc1237f..5a0d2df4a2 100644 --- a/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -1,82 +1,82 @@ {"groups": [ { "name": "logging", - "sourceType": "org.springframework.boot.logging.LoggingApplicationListener" + "type": "org.springframework.boot.logging.LoggingApplicationListener" } ],"properties": [ { "name": "logging.config", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "Location of the logging configuration file." }, { "name": "logging.file", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "The name of the log file." }, { "name": "logging.path", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "Location of the log file." }, { "name": "spring.mandatory-file-encoding", "sourceType": "org.springframework.boot.context.FileEncodingApplicationListener", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "The character encoding the application must use." }, { "name": "spring.application.name", - "dataType": "java.lang.String", + "type": "java.lang.String", "sourceType": "org.springframework.boot.context.ContextIdApplicationContextInitializer", "description": "The name of the application." }, { "name": "spring.application.index", - "dataType": "java.lang.Integer", + "type": "java.lang.Integer", "sourceType": "org.springframework.boot.context.ContextIdApplicationContextInitializer", "description": "Index of the application." }, { "name": "spring.config.name", - "dataType": "java.lang.String", + "type": "java.lang.String", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener", "description": "Config file name", "defaultValue": "application" }, { "name": "spring.config.location", - "dataType": "java.lang.String", + "type": "java.lang.String", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener", "description": "Config file locations" }, { "name": "spring.main.show-banner", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "sourceType": "org.springframework.boot.SpringApplication", "description": "Display the banner when the application runs", "defaultValue": true }, { "name": "spring.main.sources", - "dataType": "java.util.Set", + "type": "java.util.Set", "sourceType": "org.springframework.boot.SpringApplication", "description": "Sources (class name, package name or XML resource location) used to create the ApplicationContext." }, { "name": "spring.main.web-environment", - "dataType": "java.lang.Boolean", + "type": "java.lang.Boolean", "sourceType": "org.springframework.boot.SpringApplication", "description": "Run the application in a web environment (auto-detected by default)" }, { "name": "spring.profiles.active", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "Set the active profiles as a comma separated list. Can be overridden by a command line switch." }, { "name": "spring.profiles.include", - "dataType": "java.lang.String", + "type": "java.lang.String", "description": "Unconditionally activate the specified comma separated profiles." } ]}