From 5c4de89546b681bfc15caf1bcc70f0bbe22f13e3 Mon Sep 17 00:00:00 2001 From: yongsik Date: Wed, 10 Dec 2025 23:47:23 +0900 Subject: [PATCH 1/2] =?UTF-8?q?(bug)=20=ED=9A=8C=EC=9B=90=EA=B0=80?= =?UTF-8?q?=EC=9E=85=20=ED=8E=98=EC=9D=B4=EC=A7=80=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EA=B8=B0=EC=A1=B4=20=EC=9C=A0=ED=95=99=EC=9B=90=20=EC=84=A0?= =?UTF-8?q?=ED=83=9D=ED=95=98=EB=8A=94=20=EC=B9=B8=20=EC=84=A0=ED=83=9D?= =?UTF-8?q?=EC=95=88=EB=90=98=EB=8A=94=20=EC=98=A4=EB=A5=98=20=ED=95=B4?= =?UTF-8?q?=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application-prod.yml | 8 +------ .../templates/homepage/user/login.html | 22 ------------------- .../templates/homepage/user/signup.html | 4 ++-- 3 files changed, 3 insertions(+), 31 deletions(-) diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml index a92febb..35c76aa 100644 --- a/src/main/resources/application-prod.yml +++ b/src/main/resources/application-prod.yml @@ -6,17 +6,11 @@ spring: password: ${DB_PASSWORD} jpa: hibernate: - ddl-auto: none # 운영 DB는 마이그레이션 툴 사용 권장(Flyway/Liquibase) + ddl-auto: update # 운영 DB는 마이그레이션 툴 사용 권장(Flyway/Liquibase) show-sql: false properties: hibernate.format_sql: false -# show-sql: true -# properties: -# hibernate: -# format_sql: true -# dialect: org.hibernate.dialect.MySQL8Dialect - mysql: charset: utf8mb4 collation: utf8mb4_unicode_ci diff --git a/src/main/resources/templates/homepage/user/login.html b/src/main/resources/templates/homepage/user/login.html index 92cc77d..e7efd77 100644 --- a/src/main/resources/templates/homepage/user/login.html +++ b/src/main/resources/templates/homepage/user/login.html @@ -204,27 +204,5 @@

${title}

} }); - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/main/resources/templates/homepage/user/signup.html b/src/main/resources/templates/homepage/user/signup.html index 4be72ca..12d6613 100644 --- a/src/main/resources/templates/homepage/user/signup.html +++ b/src/main/resources/templates/homepage/user/signup.html @@ -573,7 +573,7 @@

중국 주소 검색

From a51f19f967640d54ebf1052b11e26646d3df921e Mon Sep 17 00:00:00 2001 From: yongsik Date: Thu, 11 Dec 2025 00:01:10 +0900 Subject: [PATCH 2/2] =?UTF-8?q?(fix)=20prod=20application=20test=ED=95=9C?= =?UTF-8?q?=EA=B1=B0=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application-prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml index 35c76aa..d43c5af 100644 --- a/src/main/resources/application-prod.yml +++ b/src/main/resources/application-prod.yml @@ -6,7 +6,7 @@ spring: password: ${DB_PASSWORD} jpa: hibernate: - ddl-auto: update # 운영 DB는 마이그레이션 툴 사용 권장(Flyway/Liquibase) + ddl-auto: none # 운영 DB는 마이그레이션 툴 사용 권장(Flyway/Liquibase) show-sql: false properties: hibernate.format_sql: false