Memo 프로젝트를 연다. build.gradle의 dependency에 아래의 코드를 추가한다. 그리고 코끼리 새로고침// JPA 설정implementation 'org.springframework.boot:spring-boot-starter-data-jpa' application.properties로 이동 후 아래의 코드 추가spring.jpa.hibernate.ddl-auto=updatespring.jpa.properties.hibernate.show_sql=truespring.jpa.properties.hibernate.format_sql=truespring.jpa.properties.hibernate.use_sql_comments=true Memo.java의 기존 코드를 전부 지우고 아래의 코드..