SpringBoot通过@Profile(“dev”) 可以在配置类中限定配置环境,在实际开发中可能需要方法级别的控制,也就是说获取到当前环境的具体信息
最终通过查看SpringBoot
日志以及源码找到答案
| 15:57:56.128 [restartedMain] INFO c.d.o.OptplatformApplication - The following profiles are active: dev |
| |
- 跟踪代码:SpringApplication.run方法
| public ConfigurableApplicationContext run(String... args) { |
| StopWatch stopWatch = new StopWatch(); |
| stopWatch.start(); |
| ConfigurableApplicationContext context = null; |
| FailureAnalyzers analyzers = null; |
| configureHeadlessProperty(); |
| SpringApplicationRunListeners listeners = getRunListeners(args); |
| listeners.starting(); |
| try { |
| ApplicationArguments applicationArguments = new DefaultApplicationArguments( |
| args); |
| ConfigurableEnvironment environment = prepareEnvironment(listeners, |
| applicationArguments); |
| Banner printedBanner = printBanner(environment); |
| context = createApplicationContext(); |
| analyzers = new FailureAnalyzers(context); |
| prepareContext(context, environment, listeners, applicationArguments, |
| printedBanner); |
| refreshContext(context); |
| afterRefresh(context, applicationArguments); |
| listeners.finished(context, null); |
| stopWatch.stop(); |
| if (this.logStartupInfo) { |
| new StartupInfoLogger(this.mainApplicationClass) |
| .logStarted(getApplicationLog(), stopWatch); |
| } |
| return context; |
| } |
| catch (Throwable ex) { |
| handleRunFailure(context, listeners, analyzers, ex); |
| throw new IllegalStateException(ex); |
| } |
| } |
| |
- 跟踪代码:SpringApplication.prepareContext方法
| private void prepareContext(ConfigurableApplicationContext context, |
| ConfigurableEnvironment environment, SpringApplicationRunListeners listeners, |
| ApplicationArguments applicationArguments, Banner printedBanner) { |
| context.setEnvironment(environment); |
| postProcessApplicationContext(context); |
| applyInitializers(context); |
| listeners.contextPrepared(context); |
| if (this.logStartupInfo) { |
| logStartupInfo(context.getParent() == null); |
| logStartupProfileInfo(context); |
| } |
| ...... |
| } |
| |
- 跟踪代码:SpringApplication.logStartupProfileInfo方法
| protected void logStartupProfileInfo(ConfigurableApplicationContext context) { |
| Log log = getApplicationLog(); |
| if (log.isInfoEnabled()) { |
| String[] activeProfiles = context.getEnvironment().getActiveProfiles(); |
| if (ObjectUtils.isEmpty(activeProfiles)) { |
| String[] defaultProfiles = context.getEnvironment().getDefaultProfiles(); |
| log.info("No active profile set, falling back to default profiles: " |
| + StringUtils.arrayToCommaDelimitedString(defaultProfiles)); |
| } |
| else { |
| log.info("The following profiles are active: " |
| + StringUtils.arrayToCommaDelimitedString(activeProfiles)); |
| |
| } |
| } |
| } |
| |
| @Slf4j |
| public class SpringContextHolder implements ApplicationContextAware, DisposableBean { |
| |
| private static ApplicationContext applicationContext = null; |
| |
| |
| |
| |
| public static ApplicationContext getApplicationContext() { |
| assertContextInjected(); |
| return applicationContext; |
| } |
| |
| |
| |
| |
| public static <T> T getBean(String name) { |
| assertContextInjected(); |
| return (T) applicationContext.getBean(name); |
| } |
| |
| |
| |
| |
| public static <T> T getBean(Class<T> requiredType) { |
| assertContextInjected(); |
| return applicationContext.getBean(requiredType); |
| } |
| |
| |
| |
| |
| private static void assertContextInjected() { |
| if (applicationContext == null) { |
| throw new IllegalStateException("applicaisetApplicationContexttonContext属性未注入, 请在applicationContext" + |
| ".xml中定义SpringContextHolder或在SpringBoot启动类中注册SpringContextHolder."); |
| } |
| } |
| |
| |
| |
| |
| |
| public static String getActiveProfile() { |
| return applicationContext.getEnvironment().getActiveProfiles()[0]; |
| } |
| |
| |
| |
| |
| public static void clearHolder() { |
| log.debug("清除SpringContextHolder中的ApplicationContext:" |
| + applicationContext); |
| applicationContext = null; |
| } |
| |
| @Override |
| public void destroy() throws Exception { |
| SpringContextHolder.clearHolder(); |
| } |
| |
| @Override |
| public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { |
| if (SpringContextHolder.applicationContext != null) { |
| log.warn("SpringContextHolder中的ApplicationContext被覆盖, 原有ApplicationContext为:" + SpringContextHolder.applicationContext); |
| } |
| SpringContextHolder.applicationContext = applicationContext; |
| } |
| } |
| |
可以通过改方式来控制在测试环境打印出当前访问的接口URL
| if ("dev".equals(SpringContextHolder.getActiveProfile())) { |
| System.out.println(String.format("====当前接口URL: %s", request.getRequestURL())); |
| } |
| |
转自:https://www.jianshu.com/p/a97aba019b3c