-
Zorg ervoor dat u het JDBC-stuurprogramma instelt om UTF-8 te gebruiken:
jdbc:mysql://dbname?useUnicode=true&characterEncoding=utf-8
-
In
persistence.xml
, stel de hibernate-verbindingstekenset in:<property name="hibernate.connection.charSet" value="UTF-8"/>
Als uw resources/import.sql
bestand is meerregelig, voeg toe:
<property
name="hibernate.hbm2ddl.import_files_sql_extractor"
value="org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor"
/>
of voor Spring Boot, in application.properties
:
spring.jpa.properties.hibernate.connection.charSet=UTF-8
spring.jpa.properties.hibernate.hbm2ddl.import_files_sql_extractor=org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor