主要是注意项目结构,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代码部分:文章来源:https://www.toymoban.com/news/detail-663727.html
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值,解析为视图的逻辑名,视图如何实现取决于多个因素。文章来源地址https://www.toymoban.com/news/detail-663727.html
到了这里,关于Tomcat运行后localhost:8080访问自己编写的网页的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!