Answers for "access to dialectresolutioninfo cannot be null when 'hibernate.dialect' not set postgressql"

SQL
0

Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set

spring.jpa.database=mysql
Posted by: Guest on January-11-2021
0

Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set

@Configuration        
public class HibernateConfig {

    @Bean
    public HibernateJpaSessionFactoryBean sessionFactory(EntityManagerFactory emf) {
         HibernateJpaSessionFactoryBean factory = new HibernateJpaSessionFactoryBean();
         factory.setEntityManagerFactory(emf);
         return factory;
    }
}
Posted by: Guest on December-19-2021

Code answers related to "access to dialectresolutioninfo cannot be null when 'hibernate.dialect' not set postgressql"

Code answers related to "SQL"

Browse Popular Code Answers by Language