[Spring Boot] xml -> yml로 변경하기

seulki·2022년 12월 13일
0

[springboot]

목록 보기
25/27

🎈 xml -> yml로 변경

스프링 Data 설정

  • properties 파일을 Yaml 형식으로 설정할 수 있다.

  • properties 파일 명 -> yml로 바꾸기

  • 파일 Depth 맞추어서 설정해주면 된다.
server:
  port: 9090


spring:
  datasource:
    url: jdbc:oracle:thin:@localhost:1521:xe
    username: springjpa
    password: springjpa
    driver-class-name: oracle.jdbc.driver.OracleDriver

  jpa:
    hibernate:
      ddl-auto: create
    properties:
      hibernate:
        show_sql: true
        format_sql: true
    
logging.level:
  org.hibernate.SQL: debug
  org.hibernate.type: trace
profile
웹 개발자 공부 중

0개의 댓글