Intellij无法识别HTML中的模型变量。如何解析模型变量。我对这个问题一无所知。
这是我的控制器
@Controller public void someController { @RequestMapping("/") public String someMethod() { model.addAttribute("message", "message"); return "index"; }
这是我的“ index.html”
当然,在我的html标签中,我正在使用thymeleaf:
问题出在我的th:text="${message}"
身上,我看到红色的波浪线说“无法解析“消息”变量...”