java spring boot 部署redis
2021-02-10 01:18
标签:boot value redis try get 服务器 time ati 部署 java spring boot 部署redis 1 先下载依赖 2 弄下配置环境 3 弄个redis封装类 4 测试 java spring boot 部署redis 标签:boot value redis try get 服务器 time ati 部署 原文地址:https://www.cnblogs.com/newmiracle/p/12746187.html
#编码格式
spring.http.encoding.force=true
spring.http.encoding.charset=UTF-8
spring.http.encoding.enabled=true
server.tomcat.uri-encoding=UTF-8
#redis配置
#Redis服务器地址
spring.redis.host=127.0.0.1
#Redis服务器连接端口
spring.redis.port=6379
#Redis数据库索引(默认为0)
spring.redis.database=0
#连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active=50
#连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.jedis.pool.max-wait=3000
#连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle=20
#连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=2
#连接超时时间(毫秒)
spring.redis.timeout=5000
package com.example.demo2122;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;
/**
* redis操作工具类.
* (基于RedisTemplate)
* @author xcbeyond
* 2018年7月19日下午2:56:24
*/
@Component
public class RedisUtils {
@Autowired
private RedisTemplate
package com.example.demo2122;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.*;
@RestController
public class HelloControl {
@Resource
private RedisUtils redisUtils;
@GetMapping("/hello")
public String hello(@RequestParam(value = "name", defaultValue = "World") String name) {
redisUtils.set("redis_key", "redis_vale");
String value = redisUtils.get("redis_key");
return value;
}
}
上一篇:飞越面试官(一)--Java基础
文章标题:java spring boot 部署redis
文章链接:http://soscw.com/index.php/essay/53346.html