解决springboot would dispatch back to the current handler URL [xxxx] again.

控制台出现如下错误

Circular view path [login]: would dispatch back to the current
 handler URL [/login] again. Check your ViewResolver setup!

代码示例
解决springboot would dispatch back to the current handler URL [xxxx] again._第1张图片
解决方式
解决springboot would dispatch back to the current handler URL [xxxx] again._第2张图片

Controller 改为RestController

@RestController注解相当于@ResponseBody + @Controller合在一起的作用。
1.在@controller注解中,返回的是字符串,或者是字符串匹配的模板名称,即直接渲染视图,与html页面配合使用,java后端的代码要结合html的情况进行渲染,使用model对象(或者modelandview)的数据将填充user视图中的相关属性,然后展示到浏览器,这个过程也可以称为渲染

2.而在@restcontroller中,返回的应该是一个对象,即return一个member对象,这时,在没有页面的情况下,也能看到返回的是一个member对象对应的json字符串,而前端的作用是利用返回的json进行解析渲染页面。

你可能感兴趣的:(springboot)