I have my application.properties set up like this :
application.properties
spring.datasource.username = root spring.datasource.password = root spring.datasource.url =
Keep your hibernate configuration Like this
jdbc:mysql://localhost:3306/dbname?useUnicode=yes&characterEncoding=UTF-8
And Change your DB Collation Like this
ALTER TABLE tablename CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
More information : Link