主要是注意项目结构,home.html放在src/resources/templates下的home.html下,application.properties可以不做任何配置。还有就是关于web包的位置,作者一开始将web包与tabtab包平行,访问8080出现了此类报错:
Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback.
这里要注意创建springboot项目时指定了包名是tabtab,所以项目启动时会自动扫描tabtab包,所以web包要放在tabtab包下。
HomeController代码部分:
package com.example.tabtab.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HomeController {
@GetMapping("/")
public String home() {
return "home";
}
}
处理对根路径的请求即可,返回String类型的home值,解析为视图的逻辑名,视图如何实现取决于多个因素。