Spring Boot获取spring.profiles.active:dev的值,也就是获取当前运行的环境配置

Posted 我欲皆真

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot获取spring.profiles.active:dev的值,也就是获取当前运行的环境配置相关的知识,希望对你有一定的参考价值。

这个spring.profiles.active的值虽然是可以通过@Value注解之类的方式获取到,但如果需要获取这个值的类是不被spring管理的呢?那就不能直接用过spring boot的简单注解方式直接获取值了,然后最近找到一个这个类。

@Component
public class SpringContextUtil implements ApplicationContextAware {

    private static ApplicationContext context = null;

    /* (non Javadoc)
     * @Title: setApplicationContext
     * @Description: spring获取bean工具类
     * @param applicationContext
     * @throws BeansException
     * @see org.springframework.context.ApplicationContextAware#setApplicationContext(org.springframework.context.ApplicationContext)
     */
    @Override
    public void setApplicationContext(ApplicationContext applicationContext)
            throws BeansException {
        this.context = applicationContext;
    }

    // 传入线程中
    public static <T> T getBean(String beanName) {
        return (T) context.getBean(beanName);
    }

    // 国际化使用
    public static String getMessage(String key) {
        return context.getMessage(key, null, Locale.getDefault());
    }

    /// 获取当前环境
    public static String getActiveProfile() {
        return context.getEnvironment().getActiveProfiles()[0];
    }
}

可以在类加载完成后(也就是说需要注意使用的时间,这个结果是否正常返回了值)通过SpringContextUtil.getActiveProfile来获取到spring.profiles.active=dev中的“dev”这个结果。

以上是关于Spring Boot获取spring.profiles.active:dev的值,也就是获取当前运行的环境配置的主要内容,如果未能解决你的问题,请参考以下文章

如何在 gradle 中获取 spring-boot 依赖版本?

如何在不从 spring-boot-starter-web 继承的情况下在 Spring Boot 中获取 ObjectMapper 实例?

java spring boot获取绝对路径

Spring/Boot - JWT 未在 GET 请求中获取

spring-boot 单元测试获取应用程序属性

如何获取spring boot application.yml里面的值