美文网首页
SpringBoot项目整合redis需要配合 commons-

SpringBoot项目整合redis需要配合 commons-

作者: 拄杖忙学轻声码 | 来源:发表于2021-09-20 23:58 被阅读0次

    POM配置依赖包如下:

    <!-- spring boot data redis 依赖 (需要配合 commons-pool2 对象池依赖使用) -->
        <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <!-- commons-pool2 对象池依赖 -->
        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-pool2</artifactId>
        </dependency>
    

    相关文章

      网友评论

          本文标题:SpringBoot项目整合redis需要配合 commons-

          本文链接:https://www.haomeiwen.com/subject/lgsdmltx.html