在当前的spring-boot / thymeleaf中,某些html视图具有这样的形式,其中存在一个具有以下内容的字段:
<input type="text" name="sobrenome" class="form-control" th:placeholder="#{account.sobrenome}"/>
的值account.sobrenome放在文件中message.properties:
account.sobrenome
message.properties
account.sobrenome=Último nome
问题是应用不解决Ú到Ú。当我使用时th:utext,我对此没有任何问题。
Ú
Ú
th:utext
任何人都知道如何使用带有此标签th:placeholder的未转义文本吗?
问题是Spring Message Ú视为单独的& U a c u t e字母,而不是Ú。
Ú
&
U
a
c
u
t
e
如下将消息更改为 unicode
account.sobrenome=\u00daltimo nome
和使用
th:placeholder="#{account.sobrenome}"