Junit으로 실행시키는 테스트 폴더와 main폴더에 대한 profile을 분리하고 싶었다.
main : local
test : test 이런식으로?
spring:
profiles:
active: local
datasource:
url: jdbc:h2:tcp://localhost/~/querydsl
username: sa
password:
driver-class-name: org.h2.Driver
jpa:
hibernate:
ddl-auto: create #application 시작 될때 table을 생성해준다.
properties:
hibernate:
# show_sql: true
format_sql: true
# use_sql_comments: true #쿼리가 보일때 alias가 나오게 표출 - 같은 테이블을
logging.level:
org.hibernate.SQL: debug #logger
# org.hibernate.type: trace #System.out
spring:
profiles:
active: test
datasource:
url: jdbc:h2:tcp://localhost/~/querydsl
username: sa
password:
driver-class-name: org.h2.Driver
jpa:
hibernate:
ddl-auto: create #application 시작 될때 table을 생성해준다.
properties:
hibernate:
# show_sql: true
format_sql: true
# use_sql_comments: true #쿼리가 보일때 alias가 나오게 표출 - 같은 테이블을
logging.level:
org.hibernate.SQL: debug #logger
# org.hibernate.type: trace #System.out