springboot
无限骄傲
这个作者很懒,什么都没留下…
展开
-
springboot整合mybatis
springboot整合mybatis2019年2月22日20:511.配置数据源 在配置文件中spring.datasource.url=jdbc:mysql://localhost:3306/mybatis?serverTimezone=GMTspring.datasource.username=rootspring.datasource.password=123456...原创 2019-02-22 21:34:00 · 119 阅读 · 0 评论 -
springboot下缓存的使用(注解)
Spring boot 下缓存使用 (最下方附带源码)常用注解几个注解常用参数 常用的cache SpEL表达式 使用缓存的步骤 1.开启缓存1、开启基于注解的缓存 @EnableCaching (在主程序class中添加此注解)2、标注缓存注解即可 @Cacheable ...原创 2019-02-24 22:05:27 · 8022 阅读 · 0 评论 -
Springboot下redis使用及以json方式缓存方法
配置文件中配置redisspring.redis.host=127.0.0.1导入jar<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId>...原创 2019-02-25 15:10:31 · 1789 阅读 · 0 评论