안녕하세요🐱🐉 이번 글에서는 Spring 어노테이션 @Value의 다양한 사용법을 알아볼게요. 일반적으로 사용하는 방법 외에도 SpEL을 사용한 방법도 있으니 도움되길 바랄게요! @Value annotation은 Spring에서 관리되는 beans에 값을 주입하는 데 사용할 수 있고 필드 또는 생성자 / 메서드 매개 변수에 적용할 수 있습니다! 0. application 설정 configuration class의 @PropertySource를 정의 properties file 설정 예) // *.properties value.from.file=Value got from the file priority=high listOfValues=A,B,C // application.yml value: from: f..