Bean 속성에 @Value 주석을 사용하여 다음과 같이 yml의 값을 직접 읽을 수 있습니다. :
application.yml:
name: Zhangsan
Bean:
public class MyBean { @Value("${name}") private String name; }
Environment 개체를 삽입하여 yml 값을 읽을 수 있습니다. @ConfigurationProperties 주석은 yml의 값을
application.yml:@Autowired private Environment environment; public void doSomething() { String name = environment.getProperty("name"); }
Bean:
my: name: Zhangsan age: 18
4과 같은 Bean의 속성에 매핑합니다. YmlPropertySourceFactory를 사용하여 yml 파일을 로드한 다음 다음과 같은 일반 속성과 같은 값을 읽습니다. @Component
@ConfigurationProperties(prefix = "my")
public class MyProps {
private String name;
private int age;
// getter and setter
}
5. @YamlComponent 주석
위 내용은 SpringBoot가 yml 파일을 읽는 3가지 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!