관리 메뉴

개발하는 동그리

[Spring] application.yml 설정 본문

IT 정보/Spring

[Spring] application.yml 설정

개발하는 동그리 2022. 8. 18. 13:37
반응형
spring:
  h2:
    console:
      enabled: true
      path: /h2
  datasource:
    url: jdbc:h2:mem:test
  jpa:
    hibernate:
      ddl-auto: create  //  스키마 자동 생성
    show-sql: true      // SQL 쿼리 출력
    properties:
      hibernate:
        format_sql: true  //  SQL pretty print
  sql:
    init:
      data-locations: classpath*:db/h2/data.sql
logging:
  level:
    org:
      springframework:
        orm:
          jpa: DEBUG // logging level 설정
server:
  servlet:
    encoding:
      force-response: true // response body 응답 데이터에 포함된 한글이 깨질 경우
반응형