您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“SpringBoot怎么整合Redis將對(duì)象寫入redis中”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“SpringBoot怎么整合Redis將對(duì)象寫入redis中”吧!
創(chuàng)建一個(gè)SpringBoot項(xiàng)目,普通的web項(xiàng)目就可以了,我這里使用的是start.aliyun
引入依賴:
(1)老演員了不多說。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
(2)整合redis
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
(3) 實(shí)體類用到了@Data注解
<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency>
(4)將對(duì)象轉(zhuǎn)為json存入redis,取出來時(shí)將json轉(zhuǎn)為對(duì)象
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.30</version> </dependency>
(1)在Application啟動(dòng)類的同級(jí)目錄下創(chuàng)建對(duì)應(yīng)的包
(2)寫redis工具類
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.StringRedisTemplate; import org.springframework.stereotype.Component; import java.util.concurrent.TimeUnit; @Component public class RedisUtils { /** * 獲取redis模板 */ @Autowired private StringRedisTemplate stringRedisTemplate; /** * 存入String類型 * @param key * @param value * @param timeOut */ public void setString(String key, String value, Long timeOut){ stringRedisTemplate.opsForValue().set(key, value); if (timeOut != null){ //設(shè)置Redis的key的有效期 stringRedisTemplate.expire(key, timeOut, TimeUnit.SECONDS); } } /** * 獲取String類型 * @param key * @return */ public String getString(String key){ return stringRedisTemplate.opsForValue().get(key); } }
實(shí)體類:
import lombok.Data; @Data public class User { private String name; private Integer age; }
控制層:
import com.alibaba.fastjson.JSONObject; import com.example.redis.redistudy.pojo.User; import com.example.redis.redistudy.util.RedisUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class RedisController { @Autowired private RedisUtils redisUtils; @GetMapping("/addUser") public String addUser(){ User user = new User(); user.setName("zhangsan"); user.setAge(18); String userString = JSONObject.toJSONString(user); redisUtils.setString("userString",userString, null); return "存入成功"; } @GetMapping("/getUser") public User getUser(String key){ String userString= redisUtils.getString(key); User user = JSONObject.parseObject(userString, User.class); return user; } }
(3)yml文件配置
spring: redis: host: 服務(wù)器公網(wǎng)ip password: root //密碼 port: 6379 //端口號(hào) database: 0 //指定存入哪一個(gè)庫
啟動(dòng)程序 ,訪問地址:http://localhost:8080/addUser
看一下redis,存入成功
再獲取一下,獲取成功
地址:http://localhost:8080/getUser?key=userString
到此,相信大家對(duì)“SpringBoot怎么整合Redis將對(duì)象寫入redis中”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。