是否可以将 Html 标签添加到 Spring MVC3 I18N messages.properties 文件中
给定以下 MVC3 i18n 使用:
在 jsp 文件中:
<s:message code="clickHere">
在 message.properties 文件中:
clickHere=Please click <a href="http://abc.com">Here</a>
用户的浏览器将显示(并且单词“Here will be a link to http://abc.com
”):< br> 请点击这里
谢谢
Given the following MVC3 i18n use:
at a jsp file:
<s:message code="clickHere">
at message.properties file:
clickHere=Please click <a href="http://abc.com">Here</a>
a user's browser will display(and the word Here will be a link to http://abc.com
):
Please click Here
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过吗
Did you try
无论如何,您使用Thymeleaf,而不是
th:text
,您应该使用th:utext
。< br>下面的示例:
您应该始终记住,使用
th:utext
可能会导致 XSS 攻击。在属性文件中,显然会有以下内容,
In any case you use Thymeleaf, instead of
th:text
, you should use theth:utext
.Example below:
You should always keep in mind that using the
th:utext
can cause XSS Attacks.In the properties file, you will obviously have the following,