# springboot整合模块 **Repository Path**: wuhaiboo/springboot-integration-module ## Basic Information - **Project Name**: springboot整合模块 - **Description**: 整合定时任务、redis、Mybatis Plus、邮箱等练习 - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: monitor - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-05-14 - **Last Updated**: 2023-03-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 1. 任务 ### 异步任务 ### 定时任务 ### 邮件任务 # 2. redis ### redisTemplate ### opsForValue ... # 3. mybatis ### CRUD ### 一级二级缓存 ### 结果映射一对一、一对多 # 4. Thymeleaf ### @Controller为springMVC注解,用于返回数据映射进页面(页面跳转) ### @RestController为springboot注解 返回数据为JSON格式(相当于springMVC中@Controller和@ResponseBody # 5. 实体类 ### pojo:泛指实体类entity ### po :与数据库表字段对应的实体类 ### vo :与页面展示的字段的实体类(可能多表部分字段的连接) ### dto :传递过程中使用的实体类