Struts2 添加国际化(I18N)支持

1.建立工程并添加Struts2支持
2.在src文件夹中加入struts.properties文件,内容如下:
struts.custom.i18n.resources=globalMessages
3.在src文件夹中加入globalMessages_en_US.properties文件,内容如下:
HelloWorld=Hello World!
4.在WebContent文件夹下加入HelloWorl.jsp文件,内容如下:
<%@ page contentType="text/html; charset=UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
    <title>Hello World</title>
</head>
<body>
    <h2><s:text name="HelloWorld"/></h2>
    <h2><s:property value="%{getText('HelloWorld')}"/></h2>
</body>
</html>
5.发布工程

你可能感兴趣的:(struts2)