Spring - IoC-Container(6) - MessageSource
MessageSource ApplicationContext가 가지고 있는 국제화 (i18n) 기능(메세지 다국화)을 제공하는 인터페이스이다. Spring boot를 사용한다면 별 다른 설정없이 messages.properties를 만들어 사용 가능하다. 사용 방법 1. messages.properties 파일을 생성한다. messages.properties에 들어가는 내용은 Default Locale에 해당하는 message이다. messages.properties greeting=안녕, {0} 위에서 {0} 은 인자를...