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
'JAVA' 카테고리의 다른 글
"[WARNING] The requested profile "pom.xml" could not be activated because it does not exist." 해결 방법 (1) | 2016.02.17 |
---|---|
[JAVA] "xxx.jar에 기본 Manifest 속성이 없습니다." 오류 해결방법 (1) | 2015.12.15 |
[JAVA] InputStream 타입을 File 타입으로 변환하기 (0) | 2015.12.15 |