位置:首頁 > Java技術 > Struts2教學 > Struts2 <s:i18n>標簽示例

Struts2 <s:i18n>標簽示例

Struts2 <s:i18n>標簽是用來從聲明的資源包獲得消息, 不隻是使用當前操作相關聯的資源包。看下麵一個完整的<s:i18n>標簽的例子:

1. 動作

Action類轉發請求。

I18nTagAction.java

package com.gitbook.netmon.action;

import com.opensymphony.xwork2.ActionSupport;
 
public class I18nTagAction extends ActionSupport{

	public String execute() throws Exception {
		
		return SUCCESS;
	}
}

2. 屬性文件

兩個屬性文件作為演示。

I18nTagAction.properties

i18n.msg = "This is a message from I18nTagAction.properties"

Custom.properties

i18n.msg = "This is a message from Custom.properties"

3. <s:i18n>標簽示例

下麵顯示<s:i18n>標簽的使用。

i18n.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
</head>
 
<body>
<h1>Struts2 <s:i18n>標簽示例 - www.gitbook.net</h1>

<h2>1.Get message from I18nTagAction.properties</h2> 
Output : 
<s:text name="i18n.msg" />

<h2>2.Get message from Custom.properties</h2> 
Output : 
<s:i18n name="com/yiibai/common/action/Custom">
	<s:text name="i18n.msg" />
</s:i18n>

</body>
</html>

它是如何工作的?

1.在示例1中,它會得到來自資源包的消息(I18nTagAction.properties)這是關想當前的操作類 (I18nTagAction.java)

2.在例2中,它會從“Custom.properties”屬性的文件得到消息,這個文件放在 com/yiibai/common/action/ 文件

不要放 .properties 後綴
一個常見的錯誤,在國際化的標簽,如果聲明屬性名為.properties後綴的文件,在Struts2將未能從聲明的資源包獲得消息。
錯誤的方式:
<s:i18n name="com/yiibai/common/action/Custom.properties">
	<s:text name="i18n.msg" />
</s:i18n>

正確的方式 :

聲明的屬性文件冇有 .properties 後綴。
<s:i18n name="com/yiibai/common/action/Custom">
	<s:text name="i18n.msg" />
</s:i18n>

4. struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
 
<struts>
 	<constant name="struts.devMode" value="true" />
	<package name="default" namespace="/" extends="struts-default">
	
		<action name="i18nTagAction" 
			class="com.gitbook.netmon.action.I18nTagAction" >
			<result name="success">pages/i18n.jsp</result>
		</action>
		
	</package>
</struts>

5. 示例

http://localhost:8080/struts2i18ntag/i18nTagAction.action

在瀏覽器中打開上麵的URL,顯示結果如下:

參考

  1. Struts2 <s:i18n>標簽文檔