关于springboot Error resolving template之类问题

今天开发遇到这个问题,找不到这个login.html
使用RestController就没错误,但是无法转到这个页面
org.thymeleaf.exceptions.TemplateInputException: Error resolving template [login.html], template might not exist or might not be accessible by any of the configured Template Resolvers
解决方案:
application.yml里面加上

spring:
  thymeleaf:
    mode: HTML
    encoding: utf-8
    cache: false
    prefix: classpath:/templates/

就能解决
希望能交流更多技术,关注小白的微信公众号吧。
在这里插入图片描述

小白技术社
原文地址:https://www.cnblogs.com/xbjss/p/13326690.html