测试:浏览器输入URL:http://localhost:8080/demo/thymeleaf
错误记录:Initializing Spring FrameworkServlet ‘dispatcherServlet’
2021-04-19 15:59:07.956 INFO 48892 — [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet ‘dispatcherServlet’: initialization started
2021-04-19 15:59:07.967 INFO 48892 — [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet ‘dispatcherServlet’: initialization completed in 11 ms
问题解决:是URL的问题
@RequestMapping("/demo")//要保持和URL一致//定义URL 请求和Controller 方法之间的映射,
// 这样的Controller 就能被外界访问到
public class SampleController {
@RequestMapping("/thymeleaf")//要保持和URL一致二级目录
public String thymeleaf(Model model){
model.addAttribute(“name”,“Joshua”);//后台向前台传数据
return “hello”;
}
}