Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Eladmin
Commits
76bdb0fc
Commit
76bdb0fc
authored
Jul 01, 2019
by
Elune
Browse files
图形验证码过期时间调整,可在application.yml 中修改
parent
9726436d
Changes
2
Hide whitespace changes
Inline
Side-by-side
eladmin-system/src/main/java/me/zhengjie/modules/monitor/service/impl/RedisServiceImpl.java
View file @
76bdb0fc
...
...
@@ -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
<
RedisVo
>
findByKey
(
String
key
,
Pageable
pageable
){
List
<
RedisVo
>
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
);
}
}
eladmin-system/src/main/resources/config/application.yml
View file @
76bdb0fc
...
...
@@ -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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment