Spring Boot(七)集成 Mybatis-Plus

官方文档:https://mp.baomidou.com/



    com.baomidou
    mybatis-plus-boot-starter
    3.1.0


    com.baomidou
    mybatis-plus-generator
    3.1.0



    org.apache.velocity
    velocity-engine-core
    2.0



    org.freemarker
    freemarker
    2.3.28



    com.ibeetl
    beetl
    2.9.8

各层调用关系
1,controller 控制层,对外提供接口,处理前端发送的请求
2,service 逻辑层,组装业务
3,serviceImpl: 逻辑实现层,调用mapper对数据库进行操作
4,mapper: 数据库操作层

Spring Boot(七)集成 Mybatis-Plus_第1张图片
controller
Spring Boot(七)集成 Mybatis-Plus_第2张图片
swagger测试
Spring Boot(七)集成 Mybatis-Plus_第3张图片
mysql8.0.15 数据库
Spring Boot(七)集成 Mybatis-Plus_第4张图片
redis
Spring Boot(七)集成 Mybatis-Plus_第5张图片
redis 配置请看(八)Spring Boot 集成 Redis
具体数据库操作请详细阅读官方文档
多看多写多练,提高自学能力。

你可能感兴趣的:(Spring,Boot)