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 외부 화 설정 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[MeU] Hashtag 기능 개발➡️ 기존 Tag 테이블에 존재하지 않는 해시태그라면 Tag , tagPostMapping 테이블에 모두 추가 ➡️ 기존에 존재하는 해시태그라면, tagPostMapping 테이블에만 추가 이후에 개발할 태그 기반 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.