首頁 > 軟體

Redis下載部署並加入idea應用的小結

2022-10-20 14:03:56

前言

複習一下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下載部署內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com