programing

스프링 부트를 사용하여 현재의 액티브프로파일을 프로그래밍 방식으로 판별하는 방법

javamemo 2023. 4. 5. 21:14
반응형

스프링 부트를 사용하여 현재의 액티브프로파일을 프로그래밍 방식으로 판별하는 방법

프로그래밍 방식으로 현재 활성 프로파일을 콩 안에 가져올 수 있는 방법이 있습니까?

앱 Boot이든 Spring이든 상관없습니다.주입할 수 있을 정도의 양이다.org.springframework.core.env.Environment당신의 콩에.

@Autowired
private Environment environment;
....

this.environment.getActiveProfiles();

언급URL : https://stackoverflow.com/questions/28392231/how-to-determine-programmatically-the-current-active-profile-using-spring-boot

반응형