spring boot 는 string value 문제 해결 방법 에서 place holder 를 해결 할 수 없습니다.
2081 단어 Spring
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'hosts' in string value "${db.hosts}"
문제 의 발생 은 여러 개의 properties 파일 로 인해 발생 한 것 입 니 다. 첫 번 째 properties 파일 에서 찾 지 못 하면 없다 고 생각 하지 않 고 다음 properties 파일 을 계속 찾 지 않 습 니 다.
해결 방법 은 다음 과 같다.
방법 1.
응용 프로그램 에 정적 방법 을 추가 합 니 다.
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.support.PropertySourcesPlaceholderConfigurer; import org.springframework.core.io.ClassPathResource; @Configuration @SpringBootApplication @ComponentScan public class TestApplication {public final static void main(String[] args) {SpringApplication.run(VfcadaptorApplication.class, args);}@Bean public static PropertySourcesPlaceholderConfigurer placeholderConfigurer() { PropertySourcesPlaceholderConfigurer c = new PropertySourcesPlaceholderConfigurer(); c.setIgnoreUnresolvablePlaceholders(true); return c; } }
방법 2. 속성 name 접두사 로 통일
app.datasource.foo.type=daffaDataSource
app.datasource.foo.status =30
@ConfigurationProperties("app.datasource.foo")
@ConfigurationProperties("app.datasource.foo")
Publicclass AA{
PrivateString type;
PrivateString status;
...
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[MeU] Hashtag 기능 개발➡️ 기존 Tag 테이블에 존재하지 않는 해시태그라면 Tag , tagPostMapping 테이블에 모두 추가 ➡️ 기존에 존재하는 해시태그라면, tagPostMapping 테이블에만 추가 이후에 개발할 태그 기반 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.