完善 SecurityProperties 注释

pull/20/MERGE
YunaiV 2023-04-02 19:13:00 +08:00
parent c0fa6311ce
commit 9c78758cd6
1 changed files with 5 additions and 6 deletions

View File

@ -32,15 +32,14 @@ public class SecurityProperties {
@NotEmpty(message = "mock 模式的密钥不能为空") // 这里设置了一个默认值,因为实际上只有 mockEnable 为 true 时才需要配置。
private String mockSecret = "test";
/**
* PasswordEncoder
*/
private Integer passwordEncoderLength =4;
/**
* URL
*/
private List<String> permitAllUrls = Collections.emptyList();
/**
* PasswordEncoder
*/
private Integer passwordEncoderLength = 4;
}