SpringではMessageSourceも用意されており、設定ファイルに設定すれば使用できます。 しかし、そのままでは少し使いにくいので使いやすくする方法を見てみましょう! 【Springの設定ファイルのサンプル(applicationContext.xml)】 <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basename" value="messages"/> </bean> <bean id="sample" class="sample.Sample"> <property name="messageSource" ref="messageSource"/> </bean> 【Sampleクラス(sam