불변 @Configuration Properties Spring Boot에서 불변(최종) 필드를 사용할 수 있습니까?@ConfigurationProperties주석?다음 예 @ConfigurationProperties(prefix = "example") public final class MyProps { private final String neededProperty; public MyProps(String neededProperty) { this.neededProperty = neededProperty; } public String getNeededProperty() { .. } } 지금까지 해 본 접근법: 작성@Bean의MyProps두 개의 컨스트럭터가 있는 클래스 2개의 컨스트럭터 제공: 빈 컨스트..