报错
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Fri Sep 29 09:42:00 CST 2023
There was an unexpected error (type=Not Found, status=404).
原因:html没有使用thymeleaf
首先要引入:
xmlns:th="http://www.thymeleaf.org"
<html lang="en" xmlns:th="http://www.thymeleaf.org">
如果不行
在setting-->plugins-->搜索thymeleaf
会出来个插件,下载,应用
最后,如果还有问题
类似与这样 显示为灰色
那就是在写的代码有问题
上图正确的应该是:
<h1 th:text="${city}"></h1>