pull/1/head
tanghc 5 years ago
parent 2e853bb77c
commit 3cf806cc90
  1. 7
      sop-website/src/main/java/com/gitee/sop/websiteserver/config/WebsiteConfig.java

@ -23,6 +23,8 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.context.event.EventListener; import org.springframework.context.event.EventListener;
import org.springframework.core.env.Environment; import org.springframework.core.env.Environment;
import javax.annotation.PostConstruct;
/** /**
* @author tanghc * @author tanghc
*/ */
@ -89,6 +91,11 @@ public class WebsiteConfig implements ApplicationRunner {
*/ */
@Override @Override
public void run(ApplicationArguments args) throws Exception { public void run(ApplicationArguments args) throws Exception {
}
@PostConstruct
public void after() {
EnvironmentContext.setEnvironment(environment); EnvironmentContext.setEnvironment(environment);
} }
} }

Loading…
Cancel
Save