当前位置:   article > 正文

生产环境中报错:would dispatch back to the current handler URL......

would dispatch back to the current handler url

具体的报错信息:
在这里插入图片描述

在网上找的解决方法大体上有这么几种:

  1. 把@Controller改成@RestController
  2. 有可能是thymeleaf依赖导入异常,或者没导入thymeleaf依赖,可以尝试到pom.xml中导入thymeleaf依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

  • 1
  • 2
  • 3
  • 4
  • 5

如果改完发现还是报500错误,可以去application.properties文件中将thymeleaf的缓存关闭
spring.thymeleaf.cache=false

  1. @RequestMapping(“hello”)中的路径与映射方法返回的视图名冲突了,不能写一样的
    在这里插入图片描述
    就是这两个地方名字不能一样。

我是使用第三个方法解决的问题。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/941371
推荐阅读
相关标签
  

闽ICP备14008679号