gpt4 book ai didi

java - Spring Boot、JPA 和 MySQL 8 方言错误

转载 作者:行者123 更新时间:2023-12-03 08:22:34 26 4
gpt4 key购买 nike

我有一个 Spring Boot 2.4.5 应用程序(目前最新版本)。 Spring Boot Data JPA 具有几乎最新的 Hibernate 5.4.30.Final 和 MySQL 8。这是 Spring Boot 的旧版本,它使用 Hibernate 5 并使用 Junit 4,并且工作正常。我决定将所有库更新到最新的库,但一切都崩溃了。因此,现在我将我的应用程序与最新的库重新组合在一起,并遇到了一些问题。大多数问题我都能解决,但这个问题还没有解决,这就是我来这里的原因。

我有以下配置:

Maven MySQL 依赖项:

    <groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.24</version>

application.properties 文件具有以下内容:

spring.datasource.url=jdbc:mysql://localhost:3306/phonebook
spring.datasource.username=username
spring.datasource.password=password
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.jpa.database-platform=org.hibernate.dialect
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=none
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
spring.jpa.properties.hibernate.dialect.storage_engine=innodb
spring.data.jpa.repositories.enabled=true

我的配置文件如下所示:

@Configuration
@ComponentScan(basePackages =
{ "com.tomholmes.springboot.phonebook.server" })
@PropertySource(value = "classpath:application.properties")
@EntityScan("com.tomholmes.springboot.phonebook.server.domain")
@EnableJpaRepositories(basePackages = "com.tomholmes.springboot.phonebook.server.dao")
public class RepositoryContextConfiguration
{
@Bean(name = "entityManagerFactory")
public LocalSessionFactoryBean sessionFactory()
{
LocalSessionFactoryBean sessionFactory = new LocalSessionFactoryBean();
return sessionFactory;
}
}

我的测试用例如下所示,您应该知道我正在使用 JUnit 5 jupiter.test 类。

@ExtendWith(SpringExtension.class)
@SpringBootTest(classes = RepositoryContextConfiguration.class)
@ComponentScan("com.tomholmes.springboot.phonebook.server")
@Transactional
public class BaseDaoTests
{
@Autowired UserDao userDao;

@Test
public void testGetUserById() {
UserEntity userEntity = userDao.findById(1L);
}
}

每当我运行单元测试时,我都会收到此错误:

Caused by: org.hibernate.HibernateException: 
Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set

很明显,我去了谷歌并将其放入搜索中。它回来后获得了很多点击,但主要来自 StackOverflow。因此,我花了一上午的时间仔细研究这里以及互联网上其他一些地方已经发布的答案。有些人解决了他们的解决方案,但它是旧版本的 Hibernate、Spring 或 Spring Boot,所以这些似乎都不适合。我希望这是一个小修复,一旦我克服了这个日志堵塞,那么我认为我的其余代码将会更容易进行。

感谢您的帮助,如果您希望我发布其他内容,请告诉我。再次感谢!

仅供引用:我有一个带有 Hibernate 5.4.31.Final 和 JUnit 4 的 Spring 5.3.6 应用程序。该应用程序与同一个数据库通信。相同的表、相同的本地主机、相同的端口、具有正确位置的相同用户等等,所以我知道数据库正在运行并且表与实体匹配。

最佳答案

我终于解决了这个问题。与其说是 application.properties 文件,不如说是我将分享我现在拥有的内容。我知道这可能看起来有点过头了,而且有些属性是多余的。但是,现在我的 DAO 层已经工作了,我可以调整属性以获得我需要的内容。

应用程序属性

spring.datasource.url=jdbc:mysql://localhost:3306/phonebook?serverTimezone=UTC
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=username
spring.datasource.password=password
spring.jpa.database=mysql
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=none
spring.jpa.hibernate.naming.physical-strategy=
org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
spring.data.jpa.repositories.enabled=true
spring.jpa.database-platform=rg.hibernate.dialect.MySQL8Dialect
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
spring.jpa.properties.hibernate.dialect.storage_engine=innodb
spring.jpa.properties.hibernate.format_sql=true

真正的修复来自修复我拥有的配置类。你可以看看我上面曾经有过的。我将其缩短为以下内容,这就是它的工作原理。

@Configuration
@PropertySource(value = "classpath:application.properties")
@EnableAutoConfiguration
public class RepositoryContextConfiguration {
}

我拥有这个文件的原始方式是,我试图设置一大堆不同的东西。显然这个 Configuration 类中没有设置某些东西,但我不知道那是什么。使用 @EnableAutoConfiguration 可以处理所有未完成的事情,现在它可以工作了。

自从 Spring Boot 2.x 的第一次迭代以来,我一直在使用 Spring Boot。当时,我仍在使用 Junit 4 进行测试,并使用 XML 应用程序上下文文件进行配置。随着时间的流逝,我总是将此应用程序更新到最新版本的 Spring Boot 和 Hibernate。每当我更新 Spring Boot 时,代码都必须随之更改,这从来都不是一个简单的更改。

无论如何,我希望这个问题可以帮助其他人。无论如何,我希望这对其他人有帮助。

关于java - Spring Boot、JPA 和 MySQL 8 方言错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67440400/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com