Package org.springframework.cloud.util
Class PropertyUtils
- java.lang.Object
-
- org.springframework.cloud.util.PropertyUtils
-
public abstract class PropertyUtils extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringBOOTSTRAP_ENABLED_PROPERTYProperty name for checking if bootstrap is enabled.static StringMARKER_CLASSProperty name for bootstrap marker class name.static booleanMARKER_CLASS_EXISTSBoolean if bootstrap marker class exists.static StringUSE_LEGACY_PROCESSING_PROPERTYProperty name for spring boot legacy processing.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanbootstrapEnabled(org.springframework.core.env.Environment environment)static booleanuseLegacyProcessing(org.springframework.core.env.Environment environment)
-
-
-
Field Detail
-
BOOTSTRAP_ENABLED_PROPERTY
public static final String BOOTSTRAP_ENABLED_PROPERTY
Property name for checking if bootstrap is enabled.- See Also:
- Constant Field Values
-
USE_LEGACY_PROCESSING_PROPERTY
public static final String USE_LEGACY_PROCESSING_PROPERTY
Property name for spring boot legacy processing.- See Also:
- Constant Field Values
-
MARKER_CLASS
public static final String MARKER_CLASS
Property name for bootstrap marker class name.- See Also:
- Constant Field Values
-
MARKER_CLASS_EXISTS
public static final boolean MARKER_CLASS_EXISTS
Boolean if bootstrap marker class exists.
-
-