模板引擎与静态资源

template engines vs static resources

在静态资源中,我可以拥有 html 文件及其 cssjavascript 文件,这样我就可以拥有一个完全动态的站点。

与静态资源(如 thymeleaf)相比,使用模板引擎有什么好处?

虽然Thymeleaf templates可以是静态资源

HTML templates written in Thymeleaf still look and work like HTML

模板引擎可以在看似静态的资源中显示动态内容。

查看 example 如何使用 thymeleaf 和 Spring

显示 name 的详细信息
  <p th:text="'Hello, ' + ${name} + '!'" />