From 76bdb0fc16350521edc3dfcf98db21c56bffff03 Mon Sep 17 00:00:00 2001 From: Elune <201507802@qq.com> Date: Mon, 1 Jul 2019 15:56:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BE=E5=BD=A2=E9=AA=8C=E8=AF=81=E7=A0=81?= =?UTF-8?q?=E8=BF=87=E6=9C=9F=E6=97=B6=E9=97=B4=E8=B0=83=E6=95=B4=EF=BC=8C?= =?UTF-8?q?=E5=8F=AF=E5=9C=A8application.yml=20=E4=B8=AD=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/monitor/service/impl/RedisServiceImpl.java | 8 +++++++- eladmin-system/src/main/resources/config/application.yml | 8 ++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/eladmin-system/src/main/java/me/zhengjie/modules/monitor/service/impl/RedisServiceImpl.java b/eladmin-system/src/main/java/me/zhengjie/modules/monitor/service/impl/RedisServiceImpl.java index f0ef3e89..1e152646 100644 --- a/eladmin-system/src/main/java/me/zhengjie/modules/monitor/service/impl/RedisServiceImpl.java +++ b/eladmin-system/src/main/java/me/zhengjie/modules/monitor/service/impl/RedisServiceImpl.java @@ -4,6 +4,7 @@ import me.zhengjie.modules.monitor.domain.vo.RedisVo; import me.zhengjie.modules.monitor.service.RedisService; import me.zhengjie.utils.PageUtil; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageImpl; import org.springframework.data.domain.Pageable; @@ -11,6 +12,7 @@ import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; import java.util.ArrayList; import java.util.List; +import java.util.concurrent.TimeUnit; /** * @author Zheng Jie @@ -22,6 +24,9 @@ public class RedisServiceImpl implements RedisService { @Autowired RedisTemplate redisTemplate; + @Value("${loginCode.expiration}") + private Long expiration; + @Override public Page findByKey(String key, Pageable pageable){ List redisVos = new ArrayList<>(); @@ -67,6 +72,7 @@ public class RedisServiceImpl implements RedisService { @Override public void saveCode(String key, Object val) { - redisTemplate.opsForValue().set(key,val,2000); + redisTemplate.opsForValue().set(key,val); + redisTemplate.expire(key,expiration, TimeUnit.MINUTES); } } diff --git a/eladmin-system/src/main/resources/config/application.yml b/eladmin-system/src/main/resources/config/application.yml index 8c98a9be..2127c638 100644 --- a/eladmin-system/src/main/resources/config/application.yml +++ b/eladmin-system/src/main/resources/config/application.yml @@ -32,6 +32,10 @@ qiniu: # 文件大小 /M max-size: 15 -#验证码有效时间/分钟 +#邮箱验证码有效时间/分钟 code: - expiration: 5 \ No newline at end of file + expiration: 5 + +#登录图形验证码有效时间/分钟 +loginCode: + expiration: 2 \ No newline at end of file