使用模板的要点: 页面主体结构固定,具体参数可变,尽可能让参数动态化,才能提高模板的复用性 =================================================================== Thymeleaf's core is a DOM processing engine Processor: An Object which applies some logic to a DOM node Standard Dialect: a set of…
模板引擎接口 ITemplateEngine 一.后台数据与外部数据 1.处理后台数据 $表达式是个变量表达式,用于处理在 request parameters and the request, session and application 中的变量 ${x} will return a variable x stored into the Thymeleaf context or as a request attribute. ${param.x} will return a reques…