Skip to content

Commit

Permalink
optimize: SecurityProperties (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuoHao authored Jun 15, 2024
1 parent 462947d commit 6198023
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
public class SecurityProperties {

private final Initializer initializer = new Initializer();
private final String jwtSecretKey = """
private String jwtSecretKey = """
平和な日常ってやつは、一瞬にして壊されるんだ!
自分がどうしたいか、自分がどうなりたいか、それが一番大事なんだ!
私はあなたのエンジェロイド。あなたの命令をなんでも聞きます。
どんなに辛いことがあっても、笑顔で乗り越えるのが俺の流儀だ!
君と出会えたこと、それが私の奇跡です。
""";
private final Long jwtExpirationTime = (long) (2 * 60 * 60 * 1000); // 2h
private Long jwtExpirationTime = (long) (2 * 60 * 60 * 1000); // 2h

@Data
public static class Initializer {
Expand Down

0 comments on commit 6198023

Please sign in to comment.