@PropertySource 주석을 사용할 때 값이 확인되지 않았습니다.PropertySourcesPlaceholderConfigurer을 구성하는 방법은 무엇입니까? 구성 클래스는 다음과 같습니다. @Configuration @PropertySource(name = "props", value = "classpath:/app-config.properties") @ComponentScan("service") public class AppConfig { 그리고 전 재산으로 봉사를 하고 있습니다. @Component public class SomeService { @Value("#{props['some.property']}") private String someProperty; AppConfig 구성 클래스를..