Browse Source

Polish class-level Javadoc for SpringProperties

pull/35405/head
Sam Brannen 7 months ago
parent
commit
0abfad870c
  1. 15
      spring-core/src/main/java/org/springframework/core/SpringProperties.java

15
spring-core/src/main/java/org/springframework/core/SpringProperties.java

@ -26,15 +26,16 @@ import org.springframework.lang.Nullable; @@ -26,15 +26,16 @@ import org.springframework.lang.Nullable;
/**
* Static holder for local Spring properties, i.e. defined at the Spring library level.
*
* <p>Reads a {@code spring.properties} file from the root of the Spring library classpath,
* and also allows for programmatically setting properties through {@link #setProperty}.
* When checking a property, local entries are being checked first, then falling back
* to JVM-level system properties through a {@link System#getProperty} check.
* <p>Reads a {@code spring.properties} file from the root of the classpath and
* also allows for programmatically setting properties via {@link #setProperty}.
* When retrieving properties, local entries are checked first, with JVM-level
* system properties checked next as a fallback via {@link System#getProperty}.
*
* <p>This is an alternative way to set Spring-related system properties such as
* "spring.getenv.ignore" and "spring.beaninfo.ignore", in particular for scenarios
* where JVM system properties are locked on the target platform (for example, WebSphere).
* See {@link #setFlag} for a convenient way to locally set such flags to "true".
* {@code spring.getenv.ignore} and {@code spring.beaninfo.ignore}, in particular
* for scenarios where JVM system properties are locked on the target platform
* (for example, WebSphere). See {@link #setFlag} for a convenient way to locally
* set such flags to {@code "true"}.
*
* @author Juergen Hoeller
* @since 3.2.7

Loading…
Cancel
Save