springboot中连接数据时想使用utf8mb4,不知配置文件application.properties中有没有相关属性可以配置呢?
在Cannot store “Pile of Poo” unicode emoji using Spring Boot Hibernate and MySQL看到个yml 文件的配置,但发现有些属性写法与properties文件不太一样。
yml 文件中:
spring:
datasource:
driverClassName: com.mysql.jdbc.Driver
connectionInitSqls: "SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci;"
jpa:
hibernate:
connection:
CharSet: utf8mb4
properties文件中,就知道
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
其他的属性是不是可以这样对应的写:
spring.datasource.connectionInitSqls = "SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci;"
spring.jpa.hibernate.connection.CharSet=utf8mb4
还有像这些配置字段有没有文档可以查呢?
隔江千里
相关分类