MySQL 사용
MySQL Workbench 8.0 CE
Schema 생성버튼을 통해 Shop Schema 생성
server.port=8080
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.datasource.username=아이디
spring.datasource.password=패스워드
spring.datasource.url=jdbc:mysql://localhost:3306/스키마명
# create, update, none, create-drop, validate,
spring.jpa.hibernate.ddl-auto=update
## Jpa Properties
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.format_sql=true
## Logging Level
logging.level.org.hibernate.type.descriptor.sql=debug
spring.security.user.name=root
spring.security.user.password=root
spring.security.user.roles=ADMIN