我正在开发一个spring boot应用程序:
使用依赖项:
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.4.1.RELEASE")
compile('org.springframework.boot:spring-boot-starter-data-jpa:1.4.1.RELEASE')
compile('mysql:mysql-connector-java:5.1.39')
}
我想在init上运行sql:
SET NAMES 'utf8mb4'
支持表情符号读/写
我在application.properties
上进行了这些配置spring.datasource.tomcat.init-sql=SET NAMES 'utf8mb4'
spring.datasource.init-sql=SET NAMES 'utf8mb4'
spring.datasource.connection-init-sql=SET NAMES 'utf8mb4'
但是我无法使它工作,并且在应用程序启动时没有这个日志。