欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

thymeleaf 404报错:There was anunexpected error (type=Not Found, status=404).

程序员文章站 2022-07-14 22:59:54
...

gradle + kotlin + idea

thymeleaf 404报错正解

  • 依赖

      implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
    
  • 配置

      spring.thymeleaf.prefix=classpath:/templates/
      spring.thymeleaf.suffix=.html
    
  • 使用@Controller而非RestController

  • 依赖写对了,但是库不完整或有问题,需Reimport (我就是被这个坑了,估计是家里的网络不好又没太注意以为导入ok…)

thymeleaf 404报错:There was anunexpected error (type=Not Found, status=404).

相关标签: Java