接上一篇:
https://blog.csdn.net/qq_36286039/article/details/119955773
不启动服务器,直接使用浏览器打开览页面
- 显示的是静态数据
Thymeleaf 目标就是前后端分离,即同一个 HTML 文件,前端人员以静态原型方式 打开时,看到是它们的内容,而后端人员通过服务器打开时,看到是动态数据 — 自然模板
补充:使用 ModelAndView 对象(对比一下)
使用 addObject 方法给 ModelAndView对象添加属性
使用 setViewName 方法给 ModelAndView对象添加视图
TestController.java
@Controller
public class TestController {
@RequestMapping("/th")
public ModelAndView index(Model model) {
ModelAndView mv = new ModelAndView();
mv.addObject("msg","hello thymeleaf!");
mv.setViewName("th/index");
return mv;
}
}
- 运行结果: