yaml
은 파일 작성에 자주 사용되는 데이터 직렬화 언어이자, 데이터 표현 양식의 한 종류2칸
1칸
💡 application.yml
#port 수정
server:
port: 9092
#DB Connection
spring:
datasource:
url: jdbc:oracle:thin:@localhost:1521:xe
driver-class-name: oracle.jdbc.OracleDriver
username: spring
password: spring
# JPA (spring 영역이므로 두칸 띄어쓰기)
jpa:
hibernate:
ddl-auto: none
properties:
hibernate:
format_sql: true
show_sql: true
#thymeleaf 설정
thymeleaf:
cache: false
2칸
띄어쓰기