方法1:使用 th:block
<th:block th:text="${msg}" />
方法2:使用 inline
<title>[[${msg}]] - 服务器错误。</title>
Hello, [[${user.name}]]! //[[]]写法会html转义
Hello, [(${user.name})]! //[()]写法不会html转义
参考:https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#inlining
方法3:使用 th:remove
<span th:text="${msg}" th:remove="tag"></span>