Commit 4bac6c66 authored by Muhammad Hewedy's avatar Muhammad Hewedy Committed by Stephane Nicoll

Order the search locations in javadoc by precedence order

See gh-16099
parent 28175c86
...@@ -72,12 +72,13 @@ import org.springframework.util.StringUtils; ...@@ -72,12 +72,13 @@ import org.springframework.util.StringUtils;
/** /**
* {@link EnvironmentPostProcessor} that configures the context environment by loading * {@link EnvironmentPostProcessor} that configures the context environment by loading
* properties from well known file locations. By default properties will be loaded from * properties from well known file locations. By default properties will be loaded from
* 'application.properties' and/or 'application.yml' files in the following locations: * 'application.properties' and/or 'application.yml' files in the following locations
* ordered by the search order:
* <ul> * <ul>
* <li>classpath:</li> * <li>file:./config/:</li>
* <li>file:./</li> * <li>file:./</li>
* <li>classpath:config/</li> * <li>classpath:config/</li>
* <li>file:./config/:</li> * <li>classpath:</li>
* </ul> * </ul>
* <p> * <p>
* Alternative search locations and names can be specified using * Alternative search locations and names can be specified using
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment