Thymeleaf是一个java类库,它是一个xml/xhtml/html5的模板引擎,可以作为MVC的Web应用的View层。

静态资源(css、js、图片等)默认放在resources/static下面。如果要修改默认存放目录,可以通过设置属性 spring.mvc.static-path-pattern来实现。

模板文件默认放在resources/ templates目录下

代码实例

PO

Spring Boot——Thymeleaf模板引擎

目录结构

Spring Boot——Thymeleaf模板引擎

演示页面

Spring Boot——Thymeleaf模板引擎

Spring Boot——Thymeleaf模板引擎

控制层

Spring Boot——Thymeleaf模板引擎

相关文章: