Spring Boot + JPA 를 이용하면 DB I/O 는 정말 쉽게 구현이 가능합니다.
하지만 svae 명령어를 이용해서 Row를 생성했는데 한글이 깨진다? 정말 간단히 해결할 수 있습니다.

application.properties

"application.properties" 파일에 "?useUnicode=true&characterEncoding=utf8" 만 추가하면 끝!

spring.datasource.url=jdbc:mysql://127.0.0.1/boot?useUnicode=true&characterEncoding=utf8
spring.datasource.username=userid
spring.datasource.password=userpasswd
spring.datasource.driver-class-name=com.mysql.jdbc.Driver