From 434e66ef5ea99b7a74033d8c1b360fce62f8b303 Mon Sep 17 00:00:00 2001 From: dmori Date: Mon, 23 Feb 2026 01:50:07 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20MySQLDialect=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=20=EC=A0=9C=EA=B1=B0=EB=A1=9C=20WARN=20=EB=A1=9C=EA=B7=B8=20?= =?UTF-8?q?=EB=9C=A8=EC=A7=80=EC=95=8A=EB=8F=84=EB=A1=9D=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application-dev.yml | 1 - src/main/resources/application-local.yml | 1 - src/test/resources/application-integrationtest.yml | 2 -- 3 files changed, 4 deletions(-) diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml index 9fffb2d..e7b0da4 100644 --- a/src/main/resources/application-dev.yml +++ b/src/main/resources/application-dev.yml @@ -21,7 +21,6 @@ spring: format_sql: true highlight_sql: true use_sql_comments: true - dialect: org.hibernate.dialect.MySQL8Dialect data: redis: host: redis diff --git a/src/main/resources/application-local.yml b/src/main/resources/application-local.yml index c7cf4c6..f976cdd 100644 --- a/src/main/resources/application-local.yml +++ b/src/main/resources/application-local.yml @@ -21,7 +21,6 @@ spring: format_sql: true highlight_sql: true use_sql_comments: true - dialect: org.hibernate.dialect.MySQL8Dialect data: redis: host: localhost diff --git a/src/test/resources/application-integrationtest.yml b/src/test/resources/application-integrationtest.yml index 7f57abe..29420c0 100644 --- a/src/test/resources/application-integrationtest.yml +++ b/src/test/resources/application-integrationtest.yml @@ -8,8 +8,6 @@ spring: hibernate: format_sql: true highlight_sql: true - dialect: org.hibernate.dialect.MySQL8Dialect - batch: jdbc: initialize-schema: never From a57ce2baefdc0ed58e483bd26d99462365cc93a7 Mon Sep 17 00:00:00 2001 From: dmori Date: Mon, 23 Feb 2026 01:54:31 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20REST=20API=EC=9D=B4=EB=AF=80?= =?UTF-8?q?=EB=A1=9C=20open-in-view=20=EC=84=A4=EC=A0=95=EC=9D=84=20false?= =?UTF-8?q?=EB=A1=9C=20=EC=A7=80=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index e8e7e7f..1934597 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -21,6 +21,8 @@ spring: model: gpt-4o-mini temperature: 0.3 max-tokens: 8192 + jpa: + open-in-view: false devtools: restart: enabled: false