安徽网站关键词优化排名,深圳最乱最穷的地方,国外建筑设计网站,安徽亳州建设厅网站主要是注意项目结构#xff0c;home.html放在src/resources/templates下的home.html下#xff0c;application.properties可以不做任何配置。还有就是关于web包的位置#xff0c;作者一开始将web包与tabtab包平行#xff0c;访问8080出现了此类报错#xff1a; Whitelabel…
主要是注意项目结构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值解析为视图的逻辑名视图如何实现取决于多个因素。