
Ch.6 Spring Boot 기능활용(1)
·
Java/project lion JSB the origin
Spring Boot Properties 설정 파일 작성 Spring Boot Profiles multi-document yaml 하나의 yaml파일 안에 여러 개의 문서를 넣어서 설정하는 방법 spring: profiles: active: local --- spring: config: activate: on-profile: local datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/demo_jpa_schema username: demo_jpa password: password jpa: hibernate: ddl-auto: create show-sql: false properties: hiber..