Class SpringApplicationJsonEnvironmentPostProcessor

java.lang.Object
org.springframework.boot.env.SpringApplicationJsonEnvironmentPostProcessor
All Implemented Interfaces:
EnvironmentPostProcessor, org.springframework.core.Ordered

public class SpringApplicationJsonEnvironmentPostProcessor extends Object implements EnvironmentPostProcessor, org.springframework.core.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
  • Field Details

    • SPRING_APPLICATION_JSON_PROPERTY

      public static final String SPRING_APPLICATION_JSON_PROPERTY
      Name of the spring.application.json property.
      See Also:
    • SPRING_APPLICATION_JSON_ENVIRONMENT_VARIABLE

      public static final String SPRING_APPLICATION_JSON_ENVIRONMENT_VARIABLE
      Name of the SPRING_APPLICATION_JSON environment variable.
      See Also:
    • DEFAULT_ORDER

      public static final int DEFAULT_ORDER
      The default order for the processor.
      See Also:
  • Constructor Details

    • SpringApplicationJsonEnvironmentPostProcessor

      public SpringApplicationJsonEnvironmentPostProcessor()
  • Method Details

    • getOrder

      public int getOrder()
      Specified by:
      getOrder in interface org.springframework.core.Ordered
    • setOrder

      public void setOrder(int order)
    • postProcessEnvironment

      public void postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment, SpringApplication application)
      Description copied from interface: EnvironmentPostProcessor
      Post-process the given environment.
      Specified by:
      postProcessEnvironment in interface EnvironmentPostProcessor
      Parameters:
      environment - the environment to post-process
      application - the application to which the environment belongs