Package org.springframework.boot.env
Class SpringApplicationJsonEnvironmentPostProcessor
java.lang.Object
org.springframework.boot.env.SpringApplicationJsonEnvironmentPostProcessor
- All Implemented Interfaces:
EnvironmentPostProcessor
,Ordered
public class SpringApplicationJsonEnvironmentPostProcessor
extends Object
implements EnvironmentPostProcessor, Ordered
An
EnvironmentPostProcessor
that parses JSON from
spring.application.json
or equivalently SPRING_APPLICATION_JSON
and
adds it as a map property source to the Environment
. The new properties are
added with higher priority than the system properties.- Since:
- 1.3.0
- Author:
- Dave Syer, Phillip Webb, Madhura Bhave, Artsiom Yudovin
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The default order for the processor.static final String
Name of theSPRING_APPLICATION_JSON
environment variable.static final String
Name of thespring.application.json
property.Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getOrder()
void
postProcessEnvironment
(ConfigurableEnvironment environment, SpringApplication application) Post-process the givenenvironment
.void
setOrder
(int order)
-
Field Details
-
SPRING_APPLICATION_JSON_PROPERTY
Name of thespring.application.json
property.- See Also:
-
SPRING_APPLICATION_JSON_ENVIRONMENT_VARIABLE
Name of theSPRING_APPLICATION_JSON
environment variable.- See Also:
-
DEFAULT_ORDER
public static final int DEFAULT_ORDERThe default order for the processor.- See Also:
-
-
Constructor Details
-
SpringApplicationJsonEnvironmentPostProcessor
public SpringApplicationJsonEnvironmentPostProcessor()
-
-
Method Details
-
getOrder
public int getOrder() -
setOrder
public void setOrder(int order) -
postProcessEnvironment
public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) Description copied from interface:EnvironmentPostProcessor
Post-process the givenenvironment
.- Specified by:
postProcessEnvironment
in interfaceEnvironmentPostProcessor
- Parameters:
environment
- the environment to post-processapplication
- the application to which the environment belongs
-