Redis下載部署並加入idea應用的小結
前言
復習一下Redis的部署和應用,並記錄瞭下來!
一、下載Window版本的redis
1.打開網址:github上的redis安裝包,找到Redis on Windows,點擊 release page。
2.選擇你要下載的版本,點擊安裝程序進行下載
3.安裝 一直點 下一步 直至完成安裝就行,註意自己的安裝目錄(下面的配置環境變量要用到,我自己的路徑是D:\Redis)
二、配置環境變量
1.右擊我的電腦,選擇屬性
2.點擊 高級系統設置 ,我這是win11系統,你們自己找哈!
3.點擊環境變量
4.雙擊Path
5.點擊新建,把安裝redis的對應目錄寫進去,然後確定。
6.點擊win+R,輸入cmd
7.輸入命令redis-cli,連接成功!
到這裡redis部署就完成瞭!!!下面是redis在idea裡面的應用! 三、redis在idea的應用 1.打開pom.xml文件,引入redis架包,代碼如下
代碼如下:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
2.打開application.properties配置文件,寫入redis的相關配置
代碼如下:
# RedisProperties #redis一共有16(0-15)個數據庫,隨便給一個 spring.redis.database=11 spring.redis.host=localhost spring.redis.port=6379
3.新建一個配置類redisConfig.java文件,代碼如下
package com.example.community.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.RedisSerializer; /** * @ClassName redisConfig * @Description TODO * @Author 加辣椒瞭嗎? * @Date 2022/4/28 2:33 * @Version 1.0 **/ @Configuration public class redisConfig { @Bean public RedisTemplate<String,Object> redisTemplate(RedisConnectionFactory factory){ // 將redis註入工廠 RedisTemplate<String,Object> template = new RedisTemplate<>(); template.setConnectionFactory(factory); // 設置key的序列化方式 template.setKeySerializer (RedisSerializer.string()); //設置value的序列化方式 template.setValueSerializer (RedisSerializer.json()); // 設置hash的key的序列化方式 template. setHashKeySerializer (RedisSerializer.string()); // 設置hash的value的序列化方式 template.setHashValueSerializer (RedisSerializer.json()); // 使設置生效 template.afterPropertiesSet(); return template; } }
4.測試 在測試類裡面添加測試方法,測試通過
代碼如下:
package com.example.community.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.RedisSerializer; /** * @ClassName redisConfig * @Description TODO * @Author 加辣椒瞭嗎? * @Date 2022/4/28 2:33 * @Version 1.0 **/ @Configuration public class redisConfig { @Bean public RedisTemplate<String,Object> redisTemplate(RedisConnectionFactory factory){ // 將redis註入工廠 RedisTemplate<String,Object> template = new RedisTemplate<>(); template.setConnectionFactory(factory); // 設置key的序列化方式 template.setKeySerializer (RedisSerializer.string()); //設置value的序列化方式 template.setValueSerializer (RedisSerializer.json()); // 設置hash的key的序列化方式 template. setHashKeySerializer (RedisSerializer.string()); // 設置hash的value的序列化方式 template.setHashValueSerializer (RedisSerializer.json()); // 使設置生效 template.afterPropertiesSet(); return template; } }
或者
打開redis控制臺,輸入以下命令,測試通過!
總結
到此這篇關於Redis下載部署並加入idea應用的文章就介紹到這瞭,更多相關Redis下載部署內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- None Found