码迷,mamicode.com
首页 > 数据库 > 详细

SpringBoot使用Redis数据库

时间:2017-07-23 18:07:17      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:使用   mapping   redis   最小   gre   frame   sof   images   空闲   

  (1)pom.xml文件引入jar包,如下:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

  (2)application.properties文件中配置redis连接信息,如下:

# Redis数据库索引(默认为0)
spring.redis.database=0
# Redis服务器地址
spring.redis.host=172.31.19.222
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=0

  (3)测试redis缓存

package springboot.web;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    
    @Autowired
    private StringRedisTemplate stringRedisTemplate;

    @RequestMapping("/redisHandler")
    public String redisHandler(){
        stringRedisTemplate.opsForValue().set("k5", "Springboot redis");
        return stringRedisTemplate.opsForValue().get("k5");
    }
}

  (4)启动项目,调用reidsHandler方法,查询redis服务器信息,如下:

   技术分享

SpringBoot使用Redis数据库

标签:使用   mapping   redis   最小   gre   frame   sof   images   空闲   

原文地址:http://www.cnblogs.com/gdpuzxs/p/7224944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!