Spring 외부 화 설정 의 몇 가지 기술 공유

본문
Envrionment 외부 설정 가 져 오기

@Log4j2
@SpringBootApplication
public class ConfigurationApplication {

    public static void main(String[] args) {
        SpringApplication.run(ConfigurationApplication.class, args);
    }
    @Bean
    ApplicationRunner applicationRunner(Environment environment){

        return  args -> {
            log.info("user.name : {}",environment.getProperty("user.name"));
        };
    }
}
Spring 기본 설정 파일 이름 수정
시작 프로그램 매개 변수 에 다음 설정 을 추가 합 니 다:

--spring.config.name=app
Value 주석 설정 원본
프로필

@Bean
ApplicationRunner applicationRunner(Environment environment,
                           @Value("${greeting.message:hello boy}") String message){

   return  args -> {
      log.info("from application.properties user.name : {}",environment.getProperty("user.name"));
      log.info("from application.properties greeting.message : {}",message);

   };
}
기본 값
value 주 해 는 콜론 을 통 해 기본 값 을 설정 합 니 다:

@Value("${greeting.message:hello boy}")
환경 변수 값 가 져 오기
프로그램 매개 변수 값 가 져 오기
외부 화 프로필 우선 순위 문제
application.properties 가 springboot 에서 jar 패키지 와 같은 디 렉 터 리 를 시작 하면 이 파일 의 설정 을 우선 읽 습 니 다.
Autowire 주입 ConfigurableEnvrionment

public static void main(String[] args) {

        new SpringApplicationBuilder()
                .sources(ConfigurationApplication.class)
                .run(args);
}

@Autowired
void getConfigurableEnvrionment(ConfigurableEnvironment environment) {
    environment.getPropertySources().addLast(new MyPropertySource());
}
응용 프로그램 Initialiazer 설정

    public static void main(String[] args) {

        new SpringApplicationBuilder()
                .sources(ConfigurationApplication.class)
                .initializers(applicationContext ->
                 applicationContext.getEnvironment().getPropertySources().addLast(new MyPropertySource()))
                .run(args);
    }

static  class  MyPropertySource extends PropertySource<String>{


   public MyPropertySource() {
      super("myproperty");
   }

   @Override
   public Object getProperty(String name) {

      if(name.equalsIgnoreCase("author-name")){
         return  "john";
      }
      return null;
   }
}
그리고@Value 주석 을 통 해 author-name 을 가 져 옵 니 다.

    @Bean
    ApplicationRunner applicationRunner(Environment environment,
                                        @Value("${greeting.message:hello boy}") String message,
                                        @Value("${author-name}") String name){

        return  args -> {
            log.info("from application.properties user.name : {}",environment.getProperty("user.name"));
            log.info("from application.properties author.name : {}",name);
        };
    }
총결산
Spring 의 Environment 추상 은 배 울 점 이 많 으 며 다음 호 는 매일 작은 기술 이 기대 된다.
이상 은 Spring 외부 화 설정 의 몇 가지 기술 공유 에 대한 상세 한 내용 입 니 다.Spring 외부 화 설정 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!

좋은 웹페이지 즐겨찾기