视图请求过程

image.png

页面导入

首页相关页面是是属于商品模块的操作,所以现在给商品模块添加视图依赖。
详情参考:Github Product模块

  1. 导入 thymeleaf 相关依赖

    1. <!-- 模板引擎 -->
    2. <dependency>
    3. <groupId>org.springframework.boot</groupId>
    4. <artifactId>spring-boot-starter-thymeleaf</artifactId>
    5. </dependency>
  2. 配置 关闭缓存

    1. spring:
    2. thymeleaf:
    3. cache: false
  3. 引入相关资源

将静态资源导入 static 目录, 将视图页面导入 templates 目录

首页跳转

详情参考:Github Product模块 web包

  1. 请求 /index.html 或 / 进入首页 视图接口
  2. 给首页返回一级分类数据
  3. 修改模板首页展示分类
  4. 创建二级分类、三级分类 Vo 按照格式封装返回