springboot 如何邂逅utf8mb4

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

还有像这些配置字段有没有文档可以查呢?

MM们
浏览 1551回答 1
1回答

隔江千里

应该是: spring.datasource.connectionInitSqls = "SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci;" jpa.hibernate.connection.CharSet=utf8mb4
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java