SpringBoot整合Redis的方法分享

戚薇 SpringBoot 发布时间:2022-06-30 15:42:32 阅读数:14774 1
下文笔者讲述SpringBoot中集成Redis的方法分享,如下所示
实现思路:
    1.引入redis相关jar包
	2.调整application.yml的相关配置
	3.编写相应的controller
	   同时使用redisTemplate操作redis
例:
1、pom文件引入redis架包

 <!--redis-->
 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-data-redis</artifactId>
 </dependency>
2、application.yml文件配置redis信息

spring:
  #redis配置
  redis:
    host: 127.0.0.1
    port: 6379
    password:
    lettuce:
    pool:
        #最大连接数
        max-active: 8
        #最大阻塞等待时间
        max-wait: 6000
        #最大空闲连接
        max-idle: 8
        #最小空闲连接
        min-idle: 0
        timeout: 5000
    database: 0
3、编写RedisController.java

package com.java265.testRedis; 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping(value="/redis", produces = "application/json; charset=UTF-8")
public class RedisController {
    @Autowired
    private RedisTemplate  redisTemplate;
 
    @RequestMapping( "/set")
    public String setInfo( String name) {
        redisTemplate.opsForValue().set("1", name);
        return "succees";
    }
 
    @RequestMapping( "/get")
    public String getInfo( String key) {
        return  redisTemplate.opsForValue().get(key).toString();
    }
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202206/3842.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者