Thymeleaf无法解析URL查询参数
<p>我正在使用Thymeleaf版本2.1.4,当向URL发送查询参数时,我想要打印字符串。但是它打印的是字符串对象,像这样<code>[Ljava.lang.String;@767a8ed5</code>。我尝试在HTML中这样打印:</p>
<pre class="brush:php;toolbar:false;"><p th:text="${param.message}"></p></pre>
<p>URL是这样的:</p>
<pre class="brush:php;toolbar:false;">http://localhost:8000/about?message=This%20is%20about%20page.</pre>
<p>对我的代码中的错误表示感激,并希望得到帮助。</p>