SpringMVC國際化簡單配置使用

2021-07-25 16:28:55 字數 782 閱讀 3888

1、在springmvc-servlet.xml配置檔案裡面新增下面的配置資訊:

id="messagesource"

class="org.springframework.context.support.resourcebundlemessagesource">

name="basenames">

/resources/commonvalue>

/resources/othervalue>

/resources/actionvalue>

list>

property>

bean>

上面資源配置的資源檔案目錄如下:

因為springmvc會去組裝需要訪問的國際化資源檔案路徑,所以只要寫資源檔案的名稱即可(eg. resources/common, resources/other…),但是在實際提供的國際化資源檔案中需要提供檔名+語言資訊(eg. common_en.properties, common_en.properties)。

2、在jsp頁面頭部引入下面資訊:

.org/tags %>

3、 在jsp頁面使用標籤訪問國際化資源:

code="common.message" />

Spring MVC國際化配置

一 基於瀏覽器語言的國際化配置 使用spring的mvc,並且配置中有配置resource檔案 其中,message info是你的properties檔案的通用名。如 我的配置檔案叫message info.properties,message info zh cn.properties等等,只要...

SpringMVC的國際化

關於springmvc的國際化,這篇文章已經講的很好了。它講了有如下幾種國際化方式 1 基於http的header資訊的國際化 request.getlocale 2 基於session的國際化 設定session的sessionlocaleresolver.locale session attri...

SpringMVC 坑路11 國際化

靜態國際化配置 動態國際化配置 請求級別的國際化處理 session 級別的國家化處理 cookie 級別的國際化處理 1 在 spring 的配置檔案裡加入 注意 messagesource 不能隨意更改名稱。2 配置資源檔案 classpath message zh cn.properties ...