Skip to content

Commit

Permalink
🔀 :: (#49) sql 500에러 해결 & time zone 변경
Browse files Browse the repository at this point in the history
🔀 :: (#49) sql 500에러 해결 & time zone 변경
  • Loading branch information
lyutvs authored May 7, 2023
2 parents e71ce28 + ed63565 commit 33c4095
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 33c4095

Please sign in to comment.