springboot整合mybatis,mongodb,redis
Posted moris5013
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot整合mybatis,mongodb,redis相关的知识,希望对你有一定的参考价值。
springboot整合常用的第三方框架,mybatis,mongodb,redis
mybatis,采用xml编写sql语句
mongodb,对MongoTemplate进行了封装
redis,对redisTemplate进行封装成工具类
可以基于该项目进行快速开发,省得以后每次开发又要重新整合一遍
项目结构:
属性配置文件
mybatis.mapper-locations=classpath*:/mapper/**/*.xml mybatis.type-aliases-package=com.irish.model mybatis.configuration.map-underscore-to-camel-case=true logging.level.com.irish.mapper=debug spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf8 spring.datasource.username=root spring.datasource.password=root spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.max-idle=10 spring.datasource.max-wait=10000 spring.datasource.min-idle=5 spring.datasource.initial-size=5 pagehelper.offset-as-page-num=true pagehelper.reasonable=true pagehelper.page-size-zero=true pagehelper.support-methods-arguments=true spring.data.mongodb.host=127.0.0.1 spring.data.mongodb.port=27017 spring.data.mongodb.username= spring.data.mongodb.password= spring.data.mongodb.database=watch spring.redis.database=0 spring.redis.host=127.0.0.1 spring.redis.port=6379 spring.redis.password= spring.redis.pool.max-active=10 spring.redis.pool.max-idle=10 spring.redis.pool.min-idle=5
github下载地址:https://github.com/jake1263/springboot-integration
以上是关于springboot整合mybatis,mongodb,redis的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot——整合SSM(主要整合MyBatis)
Springboot 整合mongodb以及mongo数据操作工具类代码实现
企业分布式微服务云SpringCloud SpringBoot mybatis (十三)Spring Boot整合MyBatis
SpringBoot整合Mybatis方式2:使用注解方式整合Mybatis