Java与SpringBoot对redis的使用方式

news/2024/11/24 11:55:26/

目录

  • 1.Java连接redis
    • 1.1 使用Jedis
    • 1.2 使用连接池连接redis
    • 1.3 java连接redis集群模式
  •  2.SpringBoot整合redis
    • 2.1 StringRedisTemplate
    • 2.2 RedisTemplate

1.Java连接redis

redis支持哪些语言可以操作 (去redis官网查询)

 

 

1.1 使用Jedis

 (1)添加jedis依赖

?

1

2

3

4

5

6

7

8

9

10

11

12

<dependency>

            <groupId>junit</groupId>

            <artifactId>junit</artifactId>

            <version>4.12</version>

            <!--只能在测试类中使用-->

            <scope>test</scope>

        </dependency>

        <dependency>

            <groupId>redis.clients</groupId>

            <artifactId>jedis</artifactId>

            <version>3.6.0</version>

        </dependency>

(2)代码测试

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

public class TestJedis {

    @Test

    public void test01(){

        //连接redis--必须保证你的redis服务运行远程连接

        //该对象把每个redis命令封装成对应的方法

        //注意端口号

        //xshell中的redis要运行起来,注意防火墙释放端口号,注意配置文件的修改

        Jedis jedis=new Jedis("192.168.1.16",6379);

        //对于字符串操作的命令

        String set = jedis.set("k1", "v1");

        System.out.println(set);

        String set1 = jedis.set("k2", "v2");

        System.out.println(set1);

        String set2 = jedis.set("k3", "v3");

        System.out.println(set2);

        //对于hash的操作

        jedis.hset("k4","name","小花");

        Long hset = jedis.hset("k4", "age", "18");

        System.out.println(hset);

       Map<String ,String> map=new HashMap<>();

        map.put("name","小明");

        map.put("age","20");

        Long k = jedis.hset("k5", map);

        System.out.println(k);

        jedis.close();

    }

}

1.2 使用连接池连接redis

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

@Test

   public void test02(){

       //创建连接池的配置类

       JedisPoolConfig jedisPoolConfig=new JedisPoolConfig();

       jedisPoolConfig.setMaxIdle(20);

       jedisPoolConfig.setMinIdle(5);

       jedisPoolConfig.setMaxWait(Duration.ofMillis(3000));

       JedisPool jedisPool=new JedisPool(jedisPoolConfig,"192.168.1.16",6379);

       long start = System.currentTimeMillis();

       for (int i = 0; i < 1000; i++) {

           //从jedis连接池获取资源

           Jedis jedis=jedisPool.getResource();

           String ping = jedis.ping();

           jedis.close();//是否关闭池子

       }

       long end=System.currentTimeMillis();

       //是为了比较使用池子还是不使用快,结论是使用池子快

       System.out.println("总耗时:"+(end-start));

   }

1.3 java连接redis集群模式

连接集群时要保证集群里面没有存值, 要是存值需要删除之前生成的文件(注意删除干净)

还有就是放行对应的端口:6001、6002、6003、6004、6005、6006,因为之前放行的实在10000端口,注意以上两点,才可以使用idea创建成功。

?

1

2

3

4

5

6

7

8

9

10

11

12

13

@Test

    public void test03(){

      Set<HostAndPort> nodes=new HashSet<>();

      nodes.add(new HostAndPort("192.168.227.175",6001));

      nodes.add(new HostAndPort("192.168.227.175",6002));

      nodes.add(new HostAndPort("192.168.227.175",6003));

      nodes.add(new HostAndPort("192.168.227.175",6004));

      nodes.add(new HostAndPort("192.168.227.175",6005));

      nodes.add(new HostAndPort("192.168.227.175",6006));

        JedisCluster jedisCluster=new JedisCluster(nodes);

      jedisCluster.set("k6", "小老虎和小兔子");

        jedisCluster.close();

    }

 

 2.SpringBoot整合redis

springboot对redis的操作封装了两个StringRedisTemplate和RedisTemplate类,StringRedisTemplate是RedisTemplate的子类,StringRedisTemplate它只能存储字符串类型,无法存储对象类型。要想用StringRedisTemplate存储对象必须把对象转为json字符串。

springboot整合redis时提供了两个模板工具类,StringRedisTemplate和RedisTemplate。

2.1 StringRedisTemplate

(1) 引入相关的依赖

?

1

2

3

4

<dependency>

         <groupId>org.springframework.boot</groupId>

         <artifactId>spring-boot-starter-data-redis</artifactId>

    </dependency>

(2)注入StringRedisTemplate该类对象

?

1

2

@Autowired

private StringRedisTemplate redisTemplate;

(3)使用StringRedisTemplate

该类把对每种数据类型的操作,单独封了相应的内部类。

此处不会有乱码,因为已经给它序列化方式和反序列化方式换成为String型。

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

@Autowired

    private StringRedisTemplate stringRedisTemplate;

 @Test

    public void test01(){

        //对hash类型的操作

        HashOperations<String, Object, Object> forHash = stringRedisTemplate.opsForHash();

        forHash.put("k1","name","张三");

        forHash.put("k1","age","15");

        Map<String,String> map=new HashMap<>();

        map.put("name","李四");

        map.put("age","25");

        forHash.putAll("k36",map);

  

        Object o = forHash.get("k1", "name");

        System.out.println(o);

  

        Set<Object> k1 = forHash.keys("k1");

        System.out.println(k1);

  

        List<Object> k11 = forHash.values("k1");

        System.out.println(k11);

  

        //获取k1对于的所有的field和value

        Map<Object, Object> k12 = forHash.entries("k1");

        System.out.println(k12);

    }

    @Test

    void contextLoads() {

        //删除指定的key

       // stringRedisTemplate.delete("k");

        //查看所有的key

        //stringRedisTemplate.keys("k");

        //是否存在指定的key

        //stringRedisTemplate.hasKey("k");

        //对字符串数据类型的操作ValueOperations

        ValueOperations<String, String> forValue = stringRedisTemplate.opsForValue();

        //存储字符串类型--key value long uint  setex()

        forValue.set("k1","张三",30, TimeUnit.SECONDS);

        //等价于setnx 存入成功返回true ,失败返回false

        Boolean absent = forValue.setIfAbsent("k11", "李四", 30, TimeUnit.SECONDS);

        System.out.println(absent);

        //append拼接

        Integer append = forValue.append("k11", "真好看");

        String k11 = forValue.get("k11");

        System.out.println(k11);

  

    }

2.2 RedisTemplate

此处会有乱码,因为它序列化方式和反序列化方式默认为JDK。

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

@SpringBootTest

class SbredisApplicationTests02 {

    //当你存储的value类型为对象类型使用redisTemplate

    //存储的value类型为字符串。StringRedisTemplate 验证码

    @Autowired

    private RedisTemplate redisTemplate;

  

    @Test

    public void test01(){

        //必须认为指定序列化方式

        redisTemplate.setKeySerializer(new StringRedisSerializer());

        redisTemplate.setValueSerializer(new Jackson2JsonRedisSerializer<Object>(Object.class));

  

        //对String类型操作类

        ValueOperations forValue = redisTemplate.opsForValue();

        //redis中key和value都变成了乱码

        //key和value都没有指定序列化方式,默认采用jdk的序列化方式

        forValue.set("k1","张三");

  

        //value默认采用jdk,类必须实现序列化接口

        forValue.set("k44",new User(1,"haha",12));

    }

}

上面的RedisTemplate需要每次都指定key value以及field的序列化方式,能不能搞一个配置类,已经为RedisTemplate指定好序列化。以后再用就无需指定。

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

@Configuration

public class RedisConfig {

    @Bean

    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {

        RedisTemplate<String, Object> template = new RedisTemplate<>();

        RedisSerializer<String> redisSerializer = new StringRedisSerializer();

        Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);

        ObjectMapper om = new ObjectMapper();

        om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);

        om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);

        jackson2JsonRedisSerializer.setObjectMapper(om);

        template.setConnectionFactory(factory);

        //key序列化方式

        template.setKeySerializer(redisSerializer);

        //value序列化

        template.setValueSerializer(jackson2JsonRedisSerializer);

        //value hashmap序列化  filed value

        template.setHashValueSerializer(jackson2JsonRedisSerializer);

        template.setHashKeySerializer(redisSerializer);

        return template;

    }

}


http://www.ppmy.cn/news/378878.html

相关文章

Vue中如何进行图片处理与滤镜效果?

Vue中如何进行图片处理与滤镜效果&#xff1f; 在 Vue 应用程序中&#xff0c;处理图片和应用滤镜效果是非常常见的需求。这可以让你的应用程序更加生动而丰富&#xff0c;吸引更多用户的眼球。Vue 提供了多种方式来处理图片和应用滤镜效果&#xff0c;让你可以轻松地实现这些…

医院监控4大难点如何破解?这个方法太顶了

在医院环境中&#xff0c;许多重要的设备对于病人的诊断、治疗和监护至关重要。为了确保这些设备的正常运行和安全性&#xff0c;动环监控系统可以发挥关键作用。 客户案例 四川某大型综合医院引入了动环监控系统来监控其重要设备&#xff0c;如手术室设备、监护设备和医疗影像…

qq手机浏览器不支持HTML5,手机QQ浏览器:响应HTML5未来 着眼当下

【中关村在线软件资讯】10月20日消息&#xff1a;由CSDN和创新工场联合举办的“移动开发者大会中国 2012”今天在北京国家会议中心继续进行&#xff0c;在上午的HTML5与Web App主题论坛上&#xff0c;腾讯MIG移动互联网事业群浏览器产品部研发组总监阮曙东作了名为“手机QQ浏览…

网络诊断,浏览器不能上网,其他软件都能上网

最近遇到一个特殊的例子&#xff0c;一个同学的电脑出了点奇怪的问题&#xff0c;暂且将这位童鞋叫作小A吧。 故障描述&#xff1a;电脑无法通过浏览器上网&#xff0c;无论是360浏览器还是谷歌浏览器&#xff0c;都无法打开页面&#xff0c;有时显示的是连接错误&#xff0c;…

新Edge浏览器对比评测,微软找回面子全靠它了

(给技术最前线加星标&#xff0c;每天看技术热点) 转自&#xff1a;中关村在线 根据外媒消息&#xff0c;Chromium芯的Edge浏览器可能会随Windows 10 20H1更新直接登陆Windows 10系统&#xff0c;并取代老款Edge浏览器。 自Windows 10系统发布以来&#xff0c;其市场占有率不断…

html页面在ie上不兼容,四招解决IE 11浏览器网页不兼容问题

虽然Windows 10即将发布,而Edge浏览器也将成为该系统的默认浏览器,但截止目前,IE 11的用户数量已经超越IE 10和IE 9的总和。虽然IE 11已经大大改进了性能,但是在浏览一些网站的时候还是会出现一些兼容性的问题。如果想要更为流畅的运行IE11浏览器的话,就要使用下面提供的方…

Ubuntu安装英伟达显卡驱动、Cuda和Cudnn

显卡驱动安装 1、下载对应型号显卡驱动 首先查看自己机器显卡型号 lspci | grep -i nvidia得到如下输出&#xff0c;其中GeForce GTX 1080就是型号 01:00.0 VGA compatible controller: NVIDIA Corporation GP104 [GeForce GTX 1080] (rev a1) 01:00.1 Audio device: NVIDI…

【MySQL高级篇笔记-主从复制(下) 】

此笔记为尚硅谷MySQL高级篇部分内容 目录 一、主从复制概述 1、如何提升数据库并发能力 2、主从复制的作用 二、主从复制的原理 1、原理剖析 2、复制的基本原则 三、一主一从架构搭建 1、准备工作 2、主机配置文件 3、从机配置文件 4、主机&#xff1a;建立账户并…