1、SpringBoot对配置文件集中化进行管理,方便进行管理,也可以使用HttpClient进行对远程的配置文件进行获取。
创建一个类实现EnvironmentPostProcessor 接口,然后可以对配置文件获取或者添加等等操作。
package com.bie.springboot; import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Properties; import org.springframework.boot.SpringApplication;
import org.springframework.boot.env.EnvironmentPostProcessor;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.core.env.PropertiesPropertySource;
import org.springframework.stereotype.Component; /**
*
* @Description TODO
* @author biehl
* @Date 2018年12月30日 下午3:43:55 1、动态获取到配置文件信息
*/
@Component
public class DynamicEnvironmentPostProcessor implements EnvironmentPostProcessor { public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) {
try {
InputStream is = new FileInputStream("E:\\springboot.properties");
Properties properties = new Properties();
properties.load(is);
PropertiesPropertySource propertySource = new PropertiesPropertySource("dynamic", properties);
environment.getPropertySources().addLast(propertySource);
} catch (Exception e) {
e.printStackTrace();
} } }
2、配置文件的名称叫做springboot.properties。然后配置文件的内容如下所示:
springboot.name=SpringBoot
需要注意的是,需要创建一个META-INF的文件夹,然后spring.factories文件里面的内容如下所示:
spring.factories是EnvironmentPostProcessor接口的详细路径=自己的实现类的详细路径:
org.springframework.boot.env.EnvironmentPostProcessor=com.bie.springboot.DynamicEnvironmentPostProcessor
3、然后可以使用主类获取到动态配置文件里面的配置信息:
package com.bie; import org.springframework.beans.BeansException;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext; import com.bie.springboot.DataSourceProperties;
import com.bie.springboot.DynamicEnvironmentPostProcessor;
import com.bie.springboot.JdbcConfig;
import com.bie.springboot.TomcatProperties;
import com.bie.springboot.UserConfig; /**
*
* @Description TODO
* @author biehl
* @Date 2018年12月30日 上午10:44:35
*
*/
@SpringBootApplication
public class Application { public static void main(String[] args) {
ConfigurableApplicationContext run = SpringApplication.run(Application.class, args);
try {
System.out.println("SpringBoot name is " + run.getEnvironment().getProperty("springboot.name"));
} catch (Exception e) {
e.printStackTrace();
} System.out.println("==================================================="); // 运行结束进行关闭操作
run.close();
} }
运行效果如下所示:
待续......