欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot使用Redis缓存MySql的方法步骤

程序员文章站 2024-02-19 09:37:16
1 项目组成应用:springboot rest api数据库:mysqljdbc框架:jpa缓存中间件:redis2 运行springboot2.1 官网download最基本的restful应用教...

1 项目组成

  • 应用:springboot rest api
  • 数据库:mysql
  • jdbc框架:jpa
  • 缓存中间件:redis

2 运行springboot

2.1 官网download最基本的restful应用

教程地址:https://spring.io/guides/gs/rest-service/

直接download成品,找到git命令 :git clone https://github.com/spring-guides/gs-rest-service.git

创建一个文件夹,打开git bash here(安装git)

SpringBoot使用Redis缓存MySql的方法步骤

idea打开成品 (complete文件夹)

SpringBoot使用Redis缓存MySql的方法步骤

2.2 运行应用

gradle -> bootrun右键 -> run/deubg

SpringBoot使用Redis缓存MySql的方法步骤

通过http://localhost:8080/greeting?name=lanxingisthebest访问

3 访问mysql

增加gradle依赖 (通过jpa)

增加配置文件及数据库配置

创建文件application.yml

SpringBoot使用Redis缓存MySql的方法步骤

类调整

SpringBoot使用Redis缓存MySql的方法步骤

SpringBoot使用Redis缓存MySql的方法步骤

SpringBoot使用Redis缓存MySql的方法步骤

mysql insert一条数据,然后通过 http://localhost:8080/listalluser 查询数据库

4 设置redis缓存

增加gradle依赖

配置文件配置redis参数

redis配置类

SpringBoot使用Redis缓存MySql的方法步骤

redisconfig代码

代码通过@cacheable使用 redis缓存

SpringBoot使用Redis缓存MySql的方法步骤

访问接口后,通过redis工具查询数据

点击 redis-lic.exe
命令 keys *

SpringBoot使用Redis缓存MySql的方法步骤

 到此这篇关于springboot使用redis缓存mysql的方法步骤的文章就介绍到这了,更多相关springboot redis缓存mysql内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!