基本数据传递,**th:text**属性取值 @RequestMapping("demo") public String demo(HttpServletRequest request, Model model) { System.out.println("hello thymeleaf "); request.setAttribute("name", "小陈"); model.addAttribute("age", 22); return "demo"; } <!doctype html> 测试thymeleaf语法...