我是靠谱客的博主 个性冥王星,最近开发中收集的这篇文章主要介绍Spring Cloud+Hibernate 连接MySQL8.0的配置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

方式一

spring.datasource.url=jdbc:mysql://localhost/clientdb?serverTimezone=UTC
spring.datasource.username=testuser
spring.datasource.password=test
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect
spring.jpa.properties.hibernate.hbm2ddl.auto=validate

方式二

spring.datasource.url=jdbc:mysql://localhost:3306/clientdb?characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true&allowPublicKeyRetrieval=true
spring.datasource.username=testuser
spring.datasource.password=test
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect
spring.jpa.properties.hibernate.hbm2ddl.auto=validate

注意:如果网络连接是公司AD域,则必须用计算名称替代localhost。

最后

以上就是个性冥王星为你收集整理的Spring Cloud+Hibernate 连接MySQL8.0的配置的全部内容,希望文章能够帮你解决Spring Cloud+Hibernate 连接MySQL8.0的配置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部