首页:整合thymleaf渲染首页

引入依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

yml 配置

#    关闭缓存就能在开发期间看到实时的效果
  thymeleaf:
    cache: false

导入资源

首页:整合thymleaf渲染首页

 

 

 

springmvc源码可以看到

首页:整合thymleaf渲染首页

 

 

 把静态资源放到 resources  static public目录下都可以。

 

========================

首页:整合thymleaf渲染首页

 

上一篇:SpringMvc---使用session将数据传输到页面上


下一篇:SpringMVC工作原理