fix redis config

This commit is contained in:
박서은
2025-06-12 15:17:15 +09:00
parent 16ce90c394
commit 7cb0efa769
8 changed files with 52 additions and 27 deletions
@@ -26,7 +26,7 @@ public class Member {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "member_id")
@Column(name = "id")
private Long id;
@Column(name = "user_id", nullable = false, unique = true, length = 50)
@@ -20,7 +20,7 @@ spring:
data:
redis:
host: ${REDIS_HOST:localhost}
port: ${REDIS_PORT:6379}
port: ${REDIS_PORT:6380}
password: ${REDIS_PASSWORD:}
jwt: