其他分享
首页 > 其他分享> > [Circular view path [abc]: would dispatch back to the current handler URL

[Circular view path [abc]: would dispatch back to the current handler URL

作者:互联网

Servlet.service() for servlet [dispatcherServlet] in 
context with path [] threw exception [Circular view path [abc]: would dispatch back to the current handler URL [/abc] again. 
Check your ViewResolver setup!
 (Hint: This may be the result of an unspecifiedview,
  due to default view name generation.)] with root cause

javax.servlet.ServletException: 
Circular view path [abc]: would dispatch back to 
the current handler URL [/abc] again. Check your ViewResolver setup! 
(Hint: This may be the result of an 
unspecified view, due to default view name generation.)

在springboot工程中 controller中写了返回值void报错
在这里插入图片描述
还可能是返回的视图解析器出现重复跳转的情况报错

可以将@Controller改为@RestController
同理也可以在方法上加上@Responsbody
都是让它不走视图解析器

标签:abc,would,URL,back,dispatch,path,Circular,view
来源: https://blog.csdn.net/xc979906570/article/details/120982516