Skip to content

Commit

Permalink
图形验证码过期时间调整,可在application.yml 中修改
Browse files Browse the repository at this point in the history
  • Loading branch information
elunez committed Jul 1, 2019
1 parent 9726436 commit 76bdb0f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
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;
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
Expand All @@ -22,6 +24,9 @@ public class RedisServiceImpl implements RedisService {
@Autowired
RedisTemplate redisTemplate;

@Value("${loginCode.expiration}")
private Long expiration;

@Override
public Page<RedisVo> findByKey(String key, Pageable pageable){
List<RedisVo> redisVos = new ArrayList<>();
Expand Down Expand Up @@ -67,6 +72,7 @@ public String getCodeVal(String key) {

@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);
}
}
8 changes: 6 additions & 2 deletions eladmin-system/src/main/resources/config/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ qiniu:
# 文件大小 /M
max-size: 15

#验证码有效时间/分钟
#邮箱验证码有效时间/分钟
code:
expiration: 5
expiration: 5

#登录图形验证码有效时间/分钟
loginCode:
expiration: 2

0 comments on commit 76bdb0f

Please sign in to comment.