Properties가 뭔가요? 🤔Properties는 애플리케이션의 설정 값들을 외부 파일로 분리하여 관리하는 방식입니다.예를 들어볼까요?개발 환경: db.url=localhost:3306운영 환경: db.url=prod.company.com:3306 이렇게 환경별로 다른 설정값들을 손쉽게 관리할 수 있답니다!Properties 설정 방법 💡1. application.properties 생성# src/main/resources/application.propertiesdb.url=localhost:3306db.username=devdb.password=12342. @PropertySource 설정@Configuration@PropertySource("classpath:/application.proper..