問題描述
不多說,直接上圖。本身代碼沒啥問題,就是強迫症看着難受,如何去除呢?
解決方案
一、修改IDEA針對thymeleaf表達式的報錯提醒級別
File->Settings->Editor->Inspections,搜索thymeleaf,右鍵Expression variables validation的級別,不是Error就行。
二、添加suppress ALL
<!DOCTYPE html>
<!--suppress ALL-->
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Hello</title>
</head>
<body>
點擊鏈接: <a href="http://www.hyhwky.com" th:href="${info}"></a>
</body>
</html>