챕터 12: 스프링부트와 국제화(I18N)12.1 메시지 소스 설정12.1.1 메시지 소스 파일 작성스프링부트에서 국제화는 메시지 소스를 사용하여 구현됩니다. 메시지 소스 파일은 src/main/resources 폴더에 위치하며, 각 언어별로 작성할 수 있습니다.예를 들어, 다음과 같은 메시지 소스 파일을 작성할 수 있습니다:# messages.properties (기본 메시지 파일)greeting=Hello# messages_ko.properties (한국어 메시지 파일)greeting=안녕하세요 12.1.2 설정 방법스프링부트에서 메시지 소스를 사용하려면 MessageSource 빈을 설정해야 합니다.package com.example.demo;import org.springframework.c..