Skip to content

Commit 237f57a

Browse files
committed
fix: 디비 localhost 변경
1 parent c93091c commit 237f57a

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

Location-based-target-authentication/src/main/resources/application.properties

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ spring.config.import=optional:application-local.properties,optional:application-
88

99
# Database
1010
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
11-
spring.datasource.url=jdbc:mysql://158.180.87.205:3306/SWYP8
11+
spring.datasource.url=jdbc:mysql://localhost:3306/SWYP8
1212
spring.datasource.username=root
13-
spring.datasource.password=rootroot
13+
spring.datasource.password=SWYPwillgo86@@
1414

1515
# JPA
1616
spring.jpa.show-sql=true
@@ -23,6 +23,17 @@ spring.profiles.active=local
2323
logging.level.com.swyp.location=DEBUG
2424
logging.level.org.springframework.web.reactive.function.client=DEBUG
2525

26+
# Database Debug Logging
27+
logging.level.org.hibernate.SQL=DEBUG
28+
logging.level.org.hibernate.type.descriptor.sql=TRACE
29+
logging.level.com.zaxxer.hikari=DEBUG
30+
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
31+
spring.jpa.properties.hibernate.show_sql=true
32+
spring.jpa.properties.hibernate.use_sql_comments=true
33+
spring.datasource.hikari.connection-test-query=SELECT 1
34+
spring.datasource.hikari.connection-timeout=5000
35+
spring.datasource.hikari.maximum-pool-size=10
36+
2637
# Swagger
2738
springdoc.swagger-ui.path=/swagger-ui/index.html
2839
springdoc.swagger-ui.tags-sorter=alpha

0 commit comments

Comments
 (0)