From 0f4faa51494854334757ab20fbcd07a618cc9adf Mon Sep 17 00:00:00 2001 From: jaehyunk <kjh77k@ajou.ac.kr> Date: Mon, 17 Jul 2023 14:29:16 +0900 Subject: [PATCH] application properties --- src/main/resources/application.properties | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 8b13789..157ee75 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1 +1,19 @@ +server.port = 8098 +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver + +spring.datasource.url=jdbc:mysql://210.107.196.163:42498/webdev?serverTimezone=UTC + +spring.datasource.username=root + +spring.datasource.password=kjh77k + +spring.jpa.properties.hibernate.show_sql=true + +spring.jpa.properties.hibernate.format_sql=true + +logging.level.org.hibernate.type.descriptor.sql=trace + +spring.jpa.hibernate.ddl-auto=update + +spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect \ No newline at end of file -- GitLab