From ae6c76a918082278d0494e0efb7a8799f1c29c55 Mon Sep 17 00:00:00 2001 From: lyutvs Date: Sat, 6 May 2023 19:09:39 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20::=20timezone=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c91bcc54..76ccf3b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,4 +12,4 @@ ENV CLOUD_CONFIG_USERNAME ${CLOUD_CONFIG_USERNAME} ENV CLOUD_CONFIG_PASSWORD ${CLOUD_CONFIG_PASSWORD} ENV PROFILE ${PROFILE} -ENTRYPOINT ["java","-jar","/app.jar"] +ENTRYPOINT ["java", "-jar", "-Duser.timezone=Asia/Seoul", "/app.jar"] From ed63565e238da28416fa5e322eb2282058f6505f Mon Sep 17 00:00:00 2001 From: lyutvs Date: Sat, 6 May 2023 19:09:46 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20::=20=EC=BF=BC?= =?UTF-8?q?=EB=A6=AC=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../setting/domain/repository/CustomSettingRepositoryImpl.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notification-infrastructure/src/main/kotlin/io/github/v1servicenotification/domain/setting/domain/repository/CustomSettingRepositoryImpl.kt b/notification-infrastructure/src/main/kotlin/io/github/v1servicenotification/domain/setting/domain/repository/CustomSettingRepositoryImpl.kt index 962b537e..1a6e62e4 100644 --- a/notification-infrastructure/src/main/kotlin/io/github/v1servicenotification/domain/setting/domain/repository/CustomSettingRepositoryImpl.kt +++ b/notification-infrastructure/src/main/kotlin/io/github/v1servicenotification/domain/setting/domain/repository/CustomSettingRepositoryImpl.kt @@ -77,10 +77,10 @@ class CustomSettingRepositoryImpl( return jpaQueryFactory .select(settingEntity.settingId.userId) .from(settingEntity) - .leftJoin(categoryEntity.settingList, settingEntity) + .leftJoin(settingEntity.settingId.categoryEntity, categoryEntity) .where( settingEntity.isActivated.eq(isActivated) - .and(categoryEntity.topic.`in`(topic)) + .and(categoryEntity.topic.eq(topic)) ) .fetch() }