-
Se till att du ställer in JDBC-drivrutinen för att använda UTF-8:
jdbc:mysql://dbname?useUnicode=true&characterEncoding=utf-8
-
I
persistence.xml
, ställ in vilolägesanslutningens teckenuppsättning:<property name="hibernate.connection.charSet" value="UTF-8"/>
Om din resources/import.sql
filen är flera rader, lägg till:
<property
name="hibernate.hbm2ddl.import_files_sql_extractor"
value="org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor"
/>
eller för Spring Boot, i application.properties
:
spring.jpa.properties.hibernate.connection.charSet=UTF-8
spring.jpa.properties.hibernate.hbm2ddl.import_files_sql_extractor=org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor