标签:标签 conf mon lib 查看 att 访问 tag sys
- resource目录下创建messages目录
- 创建messages_en_US.properties、messages_zh_CN.properties文件。分别是英文、中文资源。
- messages.properties文件为默认文件。
- messages_en_US.properties写入内容:welcome = welcome to login in soa-watch systerm(english)
- messages_zh_CN.properties写入内容:welcome=欢迎访问soa-watch系统(CH)
- messages.properties写入内容:welcome=欢迎访问soa-watch系统(Default)
spring.messages.encoding=UTF-8
spring.messages.basename=/messages/messages
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<html>
<head>
<title>i18n</title>
</head>
<body>
<spring:message code="welcome"></spring:message>
</body>
</html>
- 浏览器地址栏中输入
about:config
- 修改intl.accept_languages,查看结果
- 以上为火狐浏览器
标签:标签 conf mon lib 查看 att 访问 tag sys
原文地址:http://www.cnblogs.com/sagech/p/6018844.html