스프링 부트에서 @ConfigurationProperties를 자동 연결할 수 없습니다. 여기 제 것이 있습니다.FileStorageProperties클래스: @Data @ConfigurationProperties(prefix = "file") public class FileStorageProperties { private String uploadDir; } @enable configuration properties를 통해 등록되지 않았거나 spring 컴포넌트로 마킹되지 않았음을 알 수 있습니다. 그리고 여기 내 것이 있다.FileStorageService: @Service public class FileStorageService { private final Path fileStorageLocation..