SpringBoot使用Thymeleaf异常
本文介绍了在使用 Springboot 和 Thymeleaf 时启动服务出现找不到目标文件的问题,并提供了解决方法。通过在 application.properties 文件中添加 `spring.thymeleaf.enabled=false` 这一句话,可以禁用 thymeleaf 模板引擎,从而解决冲突,使得访问正常。同时,指出了问题的根源是使用 jsp 类型的模板而 SpringBoot 默认使用 thymeleaf,可能导致路径出错,建议仔细检查配置文件和控制文件。最终,通过禁用 thymeleaf 模板解决了找不到目标文件的问题。