如何在spring中實(shí)現(xiàn)國(guó)際化?
在applicationContext.xml加載一個(gè)bean
<bean id=”messageSource” class=”org.springframework.context.support.ResourceBundleMessageSource”>
???<property name=”basename”>
????<value>message</value>
???</property>
</bean>
?在src目錄下建多個(gè)properties文件
?對(duì)于非英文的要用native2ascii -encoding gb2312源目轉(zhuǎn)化文件相關(guān)內(nèi)容
?其命名格式是message_語言_國(guó)家息楔。
?頁面中的中顯示提示信息诗祸,鍵名取鍵值捐晶。
?當(dāng)給定國(guó)家群凶,系統(tǒng)會(huì)自動(dòng)加載對(duì)應(yīng)的國(guó)家的properties信息。
?通過applictionContext.getMessage(“鍵名”,”參數(shù)”,”區(qū)域”)取出相關(guān)的信息起便。