Skip to content

Commit

Permalink
fix: ci 에러 수정 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
choidongkuen committed Jan 6, 2024
1 parent 54a0b86 commit 4311b09
Showing 1 changed file with 19 additions and 16 deletions.
35 changes: 19 additions & 16 deletions src/test/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
spring.profiles.active=test

spring.datasource.driver-class-name = org.h2.Driver
spring.datasource.url = jdbc:h2:mem:test;MODE=MySQL;DATABASE_TO_LOWER=TRUE

spring.jpa.hibernated.ddl-auto = validate
spring.jpa.database-platform = org.hibernate.dialect.MySQLDialect

spring.datasource.hikari.maximum-pool-size = 4
spring.datasource.hikari.pool-name = H2_TEST_POOL

spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:test;MODE=MySQL;DATABASE_TO_LOWER=TRUE
spring.jpa.hibernated.ddl-auto=validate
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
spring.datasource.hikari.maximum-pool-size=4
spring.datasource.hikari.pool-name=H2_TEST_POOL
### FOR DEBUGGING ###
logging.level.org.hibernate.SQL = debug
logging.level.org.hibernate.type.descriptor.sql = trace

spring.jpa.properties.hibernate.format_sql = true
spring.jpa.properties.hibernate.highlight_sql = true
spring.jpa.properties.hibernate.use_sql_comments = true
logging.level.org.hibernate.SQL=debug
logging.level.org.hibernate.type.descriptor.sql=trace
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.highlight_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
jwt.bearer=Bearer
jwt.secret=lwEyVBsYt9V7zq57TejMnVUyzblYcfPQye08f7MGVA9kkkkk
jwt.access.expiration=300
jwt.access.header=Authorization
jwt.refresh.expiration=2000
jwt.refresh.header=Authorization-refresh
spring.data.redis.host=localhost
spring.data.redis.port=6379

0 comments on commit 4311b09

Please sign in to comment.