SpringBoot2 中使用 Redis

本贴最后更新于 2286 天前,其中的信息可能已经天翻地覆

前言

简介

SpringBoot2 中,使用 Redis,官方提供了两个 starter:

  • spring-boot-starter-data-redis
  • spring-boot-starter-data-redis-reactive

其实 spring-boot-starter-data-redis-reactive 中也仅依赖了 spring-boot-starter-data-redis

第一个例子

由于 SpringBoot 的特点,所以上手是最容易的。

依赖

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

        <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>
        </dependency>

Controller

执行
$ curl -s "localhost:8080/get?key=host"
note.abeffect.com

$ curl -s "localhost:8080/set?key=key&value=abeffect"

$ curl -s "localhost:8080/get?key=key"
abeffect

$ curl -s "localhost:8080/set2?key=key&value=abeffect"

$ curl -s "localhost:8080/get?key=key"
abeffect

参考

  • 数据库

    据说 99% 的性能瓶颈都在数据库。

    340 引用 • 708 回帖
  • Java

    Java 是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由 Sun Microsystems 公司于 1995 年 5 月推出的。Java 技术具有卓越的通用性、高效性、平台移植性和安全性。

    3187 引用 • 8213 回帖

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...