Spring 表单标记中的消息未正确显示

Spring message in form tag doesn't appear correctly

我正在尝试将 spring:message 标签插入到 form 中:... tag,代码如下:

<spring:message code="section.Wiki.titleofthearticle" var="intitule"/>
<form:input type="text" placeholder="Introduction " title="${intitule}"
 path="wikiArticleTitle" required="true"/>

我的消息属性值是这样的:section.Wiki.titleofthearticle=**Intitule de l'article**

但不幸的是我的标题属性显示如下:Intitule de l&#39;article

有没有正确显示的方法?

使用一次消息编码(URLEncoder 中有预定义的方法)

URLEncoder.encode(String s, String esc);

第一个参数是要翻译的字符串,第二个参数是你想要的字符编码。

变化:

<spring:message code="section.Wiki.titleofthearticle" var="intitule"/>

收件人:

<spring:message htmlEscape="false" code="section.Wiki.titleofthearticle" var="intitule"/>

Spring:message docs