🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
开发期间模板引擎页面修改以后,要实时生效 1)、禁用模板引擎的缓存 ``` # 禁用缓存 spring.thymeleaf.cache=false ``` 2)、页面修改完成以后ctrl+f9:重新编译; 登陆错误消息的显示 ```html <p style="color: red" th:text="${msg}" th:if="${not #strings.isEmpty(msg)}"></p> ```