Skip to content

Commit

Permalink
Update 2024-06-28-springboot cahce使用.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterChangRay authored Sep 29, 2024
1 parent 7ef5284 commit b129fac
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions _posts/2024-06-28-springboot cahce使用.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ springboot 内置cache支持。 可以很方便的对数据进行缓存。 框
这里简单介绍 springboot + redis 对接口进行缓存.

1. 导入以下依赖:
```
```java
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-cache'
```

2. 配置好redis连接信息:

```
```java
# Redis数据库索引(默认为0
spring.data.redis.database=0
# Redis服务器地址
Expand All @@ -39,7 +39,7 @@ spring.data.redis.password=

4. 配置redis序列化方式,以及配置cache地址:

```
```java
/**
这里是配置redis序列化为json格式
*/
Expand Down Expand Up @@ -73,6 +73,7 @@ spring.data.redis.password=

最后只需要在你想要缓存的方法上加上注解` @Cacheable` 可以对方法进行缓存了
示例代码:

```java
package com.example.spiderserver.service;

Expand Down

0 comments on commit b129fac

Please sign in to comment.