org.hibernate.HibernateException:如果未设置“hibernate.dialect”,则对DialectResolutionInfo的访问不能为null

org.hibernate.HibernateException:如果未设置“hibernate.dialect”,则对DialectResolutionInfo的访问不能为null,第1张

org.hibernate.HibernateException:如果未设置“hibernate.dialect”,则对DialectResolutionInfo的访问不能为null

首先删除所有配置,Spring Boot将为您启动它。如果您确实需要a

SessionFactory
而不是
EntityManagerFactory
add
HibernateJpaSessionFactoryBean

确保您

application.properties
的类路径中有一个,并添加以下属性。

spring.datasource.driverClassName=org.postgresql.Driverspring.datasource.url=jdbc:postgresql://localhost:5432/teste?charSet=LATIN1spring.datasource.username=klebermospring.datasource.password=123spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialectspring.jpa.show-sql=falsespring.jpa.hibernate.ddl-auto=create

如果您确实需要访问,

SessionFactory
并且基本上是针对同一数据源的,则可以执行以下 *** 作(尽管对于XML而不是JavaConfig,也可以在此处进行记录)。

@Configuration        public class HibernateConfig {    @Bean    public HibernateJpaSessionFactoryBean sessionFactory(EntityManagerFactory emf) {         HibernateJpaSessionFactoryBean factory = new HibernateJpaSessionFactoryBean();         factory.setEntityManagerFactory(emf);         return factory;    }}

这样,您就可以同时拥有

EntityManagerFactory
SessionFactory

假设您有一个带有

main
方法的类,
@EnableAutoConfiguration
则不需要
@EnableTransactionManagement
注释,因为Spring
Boot将为您启用该注释。
com.spring.app
包中的基本应用程序类应该足够了。

@Configuration@EnableAutoConfiguration@ComponentScanpublic class Application {    public static void main(String[] args) throws Exception {        SpringApplication.run(Application.class, args);    }}

这样的事情应该足以检测到您的所有类(包括实体和基于Spring Data的存储库)。

我还建议删除

commons-dbcp
依赖关系,因为这将允许Spring
Boot配置更快,更可靠的
HikariCP
实现。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4976511.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存