Redis--------java引入redis

一、new一个project

用idea软件点击左上角File--》new--》project

二、引入pom依赖

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>redisTest</artifactId>
    <version>1.0-SNAPSHOT</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.7.18</version>
        <relativePath/>
    </parent>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
            <version>2.6.7</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <version>2.6.7</version>
        </dependency>
    </dependencies>
</project>

三、创建SpringBootApplication

package org.example;

import org.springframework.boot.Banner;
import org.springframework.boot.Banner.Mode;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * @author zx
 * @date 2024/6/3 15:57
 */
@SpringBootApplication(scanBasePackages = {"org.example"})
public class application {

    public static void main(String[] args) {
        SpringApplication springApplication = new SpringApplication(application.class);
        // 关闭banner图案(spring 启动时的图案)   http://patorjk.com/software/taag/  在线生成图案
        /*springApplication.setBannerMode(Mode.OFF);*/
        springApplication.run();
    }
}

其中的banner.txt(放在resources目录下就可以)就是spring启动时的图案,可以换成自己想要的,属于覆盖了原先spring启动,大佛(大家应该都见过了)


//                          _ooOoo_                               //
//                         o8888888o                              //
//                         88" . "88                              //
//                         (| ^_^ |)                              //
//                         O\  =  /O                              //
//                      ____/`---'\____                           //
//                    .'  \\|     |//  `.                         //
//                   /  \\|||  :  |||//  \                        //
//                  /  _||||| -:- |||||-  \                       //
//                  |   | \\\  -  /// |   |                       //
//                  | \_|  ''\---/''  |   |                       //
//                  \  .-\__  `-`  ___/-. /                       //
//                ___`. .'  /--.--\  `. . ___                     //
//              ."" '<  `.___\_<|>_/___.'  >'"".                  //
//            | | :  `- \`.;`\ _ /`;.`/ - ` : | |                 //
//            \  \ `-.   \_ __\ /__ _/   .-` /  /                 //
//      ========`-.____`-.___\_____/___.-`____.-'========         //
//                           `=---='                              //
//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^        //
//             佛祖保佑       永不宕机      永无BUG               //

四、创建application.properties

其中填入配置信息

# 启动端口
server.port=9099
##redis settings
##本地连接
spring.redis.host=127.0.0.1
##使用默认端口
spring.redis.port=6379
spring.redis.database=15
##未设密码,默认pwd为空
spring.redis.password=

这里的database就是redis用的16个库中14

五、搞一个test目录,用来测试

也可以直接用idea自带的ALT+Insert添加一个对应的测试用例,就会在同级目录下生成这个类

package org.example.util;

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;

/**
 * @author zx
 * @date 2024/6/3 16:36
 */
@SpringBootTest
class RedisUtilTest {

    @Autowired
    private RedisTemplate redisTemplate;

    @Test
    public void test01() {
        // 第一步 存储String 字符串
        redisTemplate.opsForValue().set("ki-test", "chinese");
        Object o = redisTemplate.opsForValue().get("ki-test");
        System.out.println(o);
    }
}

点击执行之后能够看到redis中仓库14已经有数据,但是乱码,需要配置

六、格式化字符

此处搞一个config,这里也就应用了spring重写bean的几种方式之一,暴力覆盖

package org.example.configuration;

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.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;

/**
 * @author zx
 * @date 2024/6/3 16:44
 */
@Configuration
public class RedisConfig {

    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
        //key 采用String的序列化的方式
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        //value的序列化采用jackson
        redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());
        //hash的 key也采用String序列化的方式
        redisTemplate.setHashKeySerializer(new StringRedisSerializer());
        //hash的value也采用jackson
        redisTemplate.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());
        //注入连接工厂
        redisTemplate.setConnectionFactory(factory);
        redisTemplate.afterPropertiesSet();
        return redisTemplate;
    }
}

这一步骤之后,再跑test,结果就是ok的

参考了文章spring-boot启动时酷炫效果banner.txt

                  Java中引入redisc​​​​​​​​​​​​

 好玩的banner.txt可以参考这个SpringBoot炫酷的banner.txt​​​​​​​

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值