-
Đảm bảo rằng bạn đang đặt trình điều khiển JDBC để sử dụng UTF-8:
jdbc:mysql://dbname?useUnicode=true&characterEncoding=utf-8
-
Trong
persistence.xml
, đặt bộ mã kết nối ngủ đông:<property name="hibernate.connection.charSet" value="UTF-8"/>
Nếu resources/import.sql
của bạn tệp có nhiều dòng, thêm:
<property
name="hibernate.hbm2ddl.import_files_sql_extractor"
value="org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor"
/>
hoặc cho Spring Boot, trong application.properties
:
spring.jpa.properties.hibernate.connection.charSet=UTF-8
spring.jpa.properties.hibernate.hbm2ddl.import_files_sql_extractor=org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor