로컬에서 진행해보았습니다~ src/main/resources/application.properties 파일에다가 아래의 코드를 추가하면 됩니다.spring.jpa.database=mysqlspring.datasource.url=jdbc:mysql://localhost:3306/SpringTest?createDatabaseIfNotExist=truespring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.datasource.username=rootspring.datasource.password=1234spring.jpa.hibernate.ddl-auto=update 1번째 줄은 애플리케이션이 사용할 데이터베이스 유형을 지정해줍니다. 2번째 줄은..