spring Profile 은 어떻게 서로 다른 환경 에 서로 다른 설정 지원 을 제공 합 니까?

설명 하 다.
Profile 은 서로 다른 환경 에서 서로 다른 설정 을 사용 하 는 데 지원 을 제공 합 니 다(개발 환경 에서 의 설정 과 생산 환경 에서 의 설정 은 분명 다 릅 니 다.예 를 들 어 데이터 뱅 크 의 설정).spring 개발 에서@Profile 주석 으로 줄 설정 시스템 속성 을 선택 합 니 다.spring boot 에서 사용 하기 편 합 니 다.
전통 적 인 spring Profile 사용
을 참고 하여 주로@Configuration@Bean 주석 과 결합 하여 다음 코드 를 사용 합 니 다.

@Configuration //     
public class ProfileConfig {@Bean@Profile("dev") //1 
  public DemoBean devDemoBean() {
    return new DemoBean("from development profile");
  }@Bean@Profile("prod") //2public DemoBean prodDemoBean() {
  return new DemoBean("from production profile");
}

public class Main {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
        context.getEnvironment().setActiveProfiles("prod"); //1 ,prodDemoBean , “Ddev” DevDemoBean 。
        context.register(ProfileConfig.class); //2
        context.refresh(); //3
        DemoBean demoBean = context.getBean(DemoBean.class);
        System.out.println(demoBean.getContent());
        context.close();
    }
}
spring boot 방법 에서 사용:
서로 다른 환경 에 서로 다른 설정 기능 을 지원 하고 활성화,지정 매개 변수 등 방식 으로 환경 을 신속하게 전환 할 수 있 습 니 다.
1.다 중 프로필 파일 형식:application-{profile}.properties/yml
spring 의 프로필 은 두 가지 형식 이 있 습 니 다.하 나 는 properties 파일 이 고 하 나 는 yml 파일 입 니 다.어느 것 이 든 파일 이름 의 형식 으로 서로 다른 환경의 설정 을 구분 할 수 있 습 니 다.예 를 들 어:
개발 환경:application-dev.properties
생산 환경:application-prod.properties
그리고 application.properties 파일 에서 활성화 합 니 다.현재 환경:spring.frofiles.active=dev,개발 환경 활성화
2.다 중 profflee 문서 블록 모드:이것 은 yml 파일 형식 만 을 대상 으로 한 파일 에 쉽게 쓸 수 있 습 니 다.다음 그림 입 니 다.

3.활성화 방식:
C 명령 행--spring.profiles.active=devC 프로필 spring.profiles.active=dev
  • C jvm 매개 변수 CDspring.profiles.active=dev
  • 이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

    좋은 웹페이지 즐겨찾기