我有一段字符串,其中也包含URL字样, 喜欢:
生成PDF 时" Hello world, http://thymeleaf.org 和 https://google.com 欢迎你。"
,这两个网址字应该是超链接,其余文字应该是普通的。
答案 0 :(得分:0)
@ModelAttribute("paragrah")
public String getParagraph()
{
return "Hello world, <a href='http://thymeleaf.org'>http://thymeleaf.org</a> and <a href='https://google.com'>https://google.com</a> welcomes you.";
}
<强> HTML 强>
<p th:text="${paragraph}"/>