使用Spring Boot创建Spring MVC项目,访问url请求出现问题:Circular view path
1、问题描述
控制台打印:

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

图片描述

浏览器访问:

图片描述

2、项目代码

(1)Spring MVC的controller

 package com.hello.web;
 
 import org.springframework.stereotype.Controller;
 import org.springframework.ui.Model;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestParam;
 
 @Controller
 public class GreetingController {
     @RequestMapping("/greeting")
     public String greeting(@RequestParam(value="name",required=false,defaultValue="World")String name, Model model) {
         model.addAttribute("name", name);
         return "greeting";
     }
 }

(2)页面代码

使用 thymeleaf模板框架,负责服务端渲染html页面

 <!DOCTYPE html>
 <html xmlns:th="http://www.thymeleaf.org">
 <head>
 <title>Spring Boot thymeleaf 应用</title>
 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
 </head>
 <body>
     <p th:text="'hello, '+${name}+'!'" />
 </body>
 </html>

3、解决方法

在 项目的 pom.xml中添加 thymeleaf 的 spring boot starter

 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-thymeleaf</artifactId>
 </dependency>

4、问题解决

再次通过浏览器地址栏,访问: http://localhost:8080/greeting?name=zhangsan

图片描述

Donate捐赠

如果我的文章帮助了你,可以赞赏我 1 元,让我继续写出更好的内容)

图片描述

图片描述

(微信) (支付宝)

微信/支付宝 扫一扫