xin
2025-04-28 08716238bafaf3e0b69675d4b3a6a3b531c7a4f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.oying.modules.security.config;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * Jwt参数配置
 *
 * @author Z
 * @date 2019年11月28日
 */
@Data
@Configuration
@ConfigurationProperties(prefix = "jwt")
public class SecurityProperties {
 
    /**
     * Request Headers : Authorization
     */
    private String header;
 
    /**
     * 令牌前缀,最后留个空格 Bearer
     */
    private String tokenStartWith;
 
    /**
     * 必须使用最少88位的Base64对该令牌进行编码
     */
    private String base64Secret;
 
    /**
     * 令牌过期时间 此处单位/毫秒
     */
    private Long tokenValidityInSeconds;
 
    /**
     * 在线用户 key,根据 key 查询 redis 中在线用户的数据
     */
    private String onlineKey;
 
    /**
     * 验证码 key
     */
    private String codeKey;
 
    /**
     * token 续期检查
     */
    private Long detect;
 
    /**
     * 续期时间
     */
    private Long renew;
 
    public String getTokenStartWith() {
        return tokenStartWith + " ";
    }
}