jpa报错没有设置方言
Access to DialectResolutionInfo cannot be null when ‘hibernate.dialect’ not set
经过网上多次查找答案,都没解决我的问题。
一开始我是使用springboot的配置文件配置方言,但是好像不起效果,我也不知道为什么,原先的配置类是这样
#jpa config
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://11.11.11.11:test
spring.datasource.username=root
spring.datasource.password=tyler
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=validate
spring.jpa.database=mysql
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
logging.level.org.hibernate.SQL=debug
#spring的session会话存储类型
spring.session.store-type=hazelcast
后面我就在配置类里面配置方言
配置了的所有代码为:
package com.tyler.xunwu.config;
import org.springframework.beans.factory.annotation.Value;
imp