javax.servlet.ServletException: Circular view path......Check your ViewResolver setup!

Controller返回数据到前端的时候出现了异常,工程:Spring Boot + Mybatis,Controller代码:

@Controller
public class UserController {
    
    @Autowired
    private UserMapper userService;
    
    @RequestMapping("/users")
    public List getAllUsers() {
        return userService.getAllUsers();
    }
}
返回的是一个User列表,但是抛了ServletException异常,大致的意思是没有指定视图结果,让你检查一下你的视图配置,在springmvc中我们是使用viewResolver,通过在controller中return的前缀来决定跳转到相应的视图。在Spring Boot中也可以通过这样的方式,但是现在我想要返回的是一段Json数据,不需要视图来接收。

解决办法:

1.把@Controller注解换成@RestController

2.在方法上添加注解@ResponseBody

在这里为什么使用@RestController,和@Controller有什么区别呢?不如看一下源码:

@Controller源码:

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Controller {
​
    /**
     * The value may indicate a suggestion for a logical component name,
     * to be turned into a Spring bean in case of an autodetected component.
     * @return the suggested component name, if any
     */
    String value() default "";
}
@RestController源码
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Controller
@ResponseBody
public @interface RestController {
​
    /**
     * The value may indicate a suggestion for a logical component name,
     * to be turned into a Spring bean in case of an autodetected component.
     * @return the suggested component name, if any
     * @since 4.0.1
     */
    String value() default "";
}
会发现在@RestController的注解中多了一个@ResponseBody注解,这就是区别所在,也就是说@RestController包含了@Controller控制器的功能,也包含了直接响应数据的功能。

3.如果想要用视图去展示,应该要设置好视图展示页面,比如说用一个模板语言来接收返回的数据(thymeleaf或者freemarker等),也可以用jsp接收,但是SpringBoot官方是不推荐用jsp的,而是建议使用thymeleaf作为模板语言,这里我以thymeleaf为例。

在maven工程pom中引入thymeleaf依赖:

    
        UTF-8
        1.8
         3.0.2.RELEASE 
         2.1.1 
        7.0.69
    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.2.RELEASE
        
    
    .... // 中间省略
    
        org.springframework.boot
        spring-boot-starter-thymeleaf
    

在application.properties中配置:

spring.datasource.url= jdbc:mysql://localhost:3306/test
spring.datasource.username= root
spring.datasource.password= root
spring.datasource.driverClassName= com.mysql.jdbc.Driver
  
spring.thymeleaf.mode = HTML5
​
# mybatis
mybatis.config-locations=classpath*:mybatis-config.xml
mybatis.mapper-locations=classpath*:mapper/*Mapper.xml
mybatis.type-aliases-package=com.fisher.domain
​
server.session-timeout = 3600
server.port= 8080

定义一个user.html,路径/src/main/resources/template, 用来展示数据:




用户列表

ID Name Mark
>

这里的Controller需要修改,改为:

@Controller
public class UserController {
    
    @Autowired
    private UserMapper userService;
    
    @RequestMapping("/users")
    public String getAllUsers(Model model) {
        List users = userService.getAllUsers();
        model.addAttribute("users", users);
        return "user";
    }
}

因为这里返回的是模板的路径,自动跳转至user.html页面。启动Spring Boot工程后,在浏览器中访问localhost:8080/users,即可看到用户列表javax.servlet.ServletException: Circular view path......Check your ViewResolver setup!_第1张图片


你可能感兴趣的:(Spring,Boot,Spring,Boot)