gpt4 book ai didi

Spring - 无法解析 MVC "view"thymeleaf

转载 作者:行者123 更新时间:2023-12-04 16:00:13 24 4
gpt4 key购买 nike

我得到了一个简单的 HomeController.class :

package com.example.tacos;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class HomeController {

@GetMapping("/")
public String home() {
return "home";
}
}
我还得到了一个名为 home.html 的模板
<!DOCTYPE HTML>
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p>Hey</p>
</body>
</html>
无论如何,我在浏览器中得到 404,IDE 告诉我无法解析 MVC“ View ”,正如您在屏幕上看到的那样
文件夹结构:
Folder Structure
浏览器:
Browser

最佳答案

嗨,我遇到了同样的问题,我通过删除 Thymeleaf 的版本来修复它,因此 pom 文件将如下所示:

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

关于Spring - 无法解析 MVC "view"thymeleaf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60002080/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com