300x250
반응형
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver // 마리아db 드라이버
spring.datasource.url=jdbc:mariadb://localhost:3306/testdb // db주소
spring.datasource.username=root // 유저네임
spring.datasource.password=pw // 패스워드
spring.jpa.hibernate.ddl-auto=update // ddl 설정*
spring.jpa.show-sql=true // 로그에 sql 보여주기
spring.jpa.properties.hibernate.format_sql=true // sql 보여줄 때 포맷 예쁘게
spring.jpa.hibernate.ddl-auto 옵션
- none
- create : 시작할 때마다 다시 생성
- create-drop : 시작할때 생성 후 종료할때 드롭
- update : 시작할때 entity 클래스와 db 비교해서 없는 테이블/컬럼 db에 생성 (제거는 안함)
- validate : 시작할때 `` 비교해서 다르면 예외 발생
300x250
반응형
'IT > 자바, 스프링' 카테고리의 다른 글
Postman에서 form-data로 보냈을 때 Unsupported Media Type 에러 (2) | 2021.08.09 |
---|---|
intellij 서버 포트번호 변경 (0) | 2021.08.09 |
Controller Advice로 Exception 처리하기 (0) | 2021.08.05 |
no Creators, like default constructor, exist 에러 (0) | 2021.08.04 |
JUnit으로 테스트코드 실행했는데 no tests 에러 뜰때 (No tests found for given includes) (0) | 2021.06.10 |