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 is about page.</pre>
<p>對我的程式碼中的錯誤表示感激,並希望得到幫助。 </p>