스프링이 메시지와 국제화 기능을 모두 제공한다. 메시지 소스 설정하기spring.messages.basename=messages,config.i18n.messagesMessageSource를 스프링 빈으로 등록하지 않으면 message라는 이름으로 기본 등록된다. 따라서 message_en.properties와 같이 파일만 등록하면 자동인식이 된다. hello=안녕hello.name=안녕 {0}hello=hellohello.name=hello {0} package hello.itemservice.message;import org.junit.jupiter.api.Test;import org.springframework.beans.factory.annotation.Autowired;import org...