๐Ÿ˜Ž

[JPA] DB ์„ค์ •

ๅๆœˆ 2024. 2. 16. 14:49

 

โœ… ์ธํ…”๋ฆฌ์ œ์ด Data Sources์— ๋กœ์ปฌ DB ์„ค์ •ํ•˜๊ธฐ

 

โœ… application.properties

#server.port=9000

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/bluesyoom
spring.datasource.username=root
spring.datasource.password=root
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQLDialect
spring.jpa.hibernate.ddl-auto=(create/update/none/validate/create-drop)