Hibernate表示该表并不存在,但它确实存在

时间:2015-04-10 16:24:04

标签: hibernate spring-boot spring-data-jpa

我遇到了Hibernate抛出以下错误的问题:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'Library.book' doesn't exist

我的依赖设置看起来像这样(我相信这可能是原因):

compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test") 

compile 'org.springframework:spring-orm:4.1.6.RELEASE'
compile 'org.springframework.data:spring-data-jpa:1.8.0.RELEASE'

compile 'org.hibernate:hibernate-entitymanager:4.3.8.Final'
compile 'org.hibernate:hibernate-core:4.3.8.Final'

compile 'org.apache.commons:commons-dbcp2:2.1'

compile 'mysql:mysql-connector-java:5.1.35'

compile 'org.apache.logging.log4j:log4j-core:2.2'

所以我使用的是spring-boot-starter-web(使用Spring CLI创建的项目),然后为Hibernate和Spring Data添加了非spring-boot依赖项(在不同的项目中使用完全相同的依赖集,但是没有spring-boot-starter-web,一切都运行得很好)。

在阅读其他人的问题后,我检查了我的@EnableJpaRepositories是否有正确的存储库路径,以及entityManagerFactoryBean是否正确设置了packagesToScan。

我认为Spring Boot与其他依赖项存在冲突,因为我的配置看起来很好。

我现在将展示一些代码片段,因为我对配置的正确性可能有误; p

预订MySQL DDL:

CREATE TABLE IF NOT EXISTS `Library`.`Book` (
  `id` INT NOT NULL AUTO_INCREMENT,
  `title` VARCHAR(100) NOT NULL,
  `description` VARCHAR(256),
  `genre` VARCHAR(50) NOT NULL,
  `releaseDate` DATE NOT NULL,
  PRIMARY KEY (`id`)
)

图书实体:

@Entity
@Table(name="Book")
public class Book {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private int id;
    private String title;
    private String description;
    private String genre;
    @Temporal(TemporalType.DATE)
    private Date releaseDate;
}

EntityManagerFactory bean:

@Bean
@Autowired(required = true)
public EntityManagerFactory entityManagerFactory(DataSource dataSource) {
    HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter();
    vendorAdapter.setGenerateDdl(true);
    vendorAdapter.setShowSql(false);
    vendorAdapter.setDatabasePlatform("org.hibernate.dialect.MySQLDialect");
    vendorAdapter.setDatabase(Database.MYSQL);

    LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean();
    factory.setJpaVendorAdapter(vendorAdapter);
    factory.setPackagesToScan("pl.com.imralav.library.data.entity");
    factory.setDataSource(dataSource);

    Properties properties = new Properties();
    properties.setProperty("hibernate.generate_statistics", "false");
    properties.setProperty("hibernate.show_sql", "false");

    factory.setJpaProperties(properties);

    factory.afterPropertiesSet();

    return factory.getObject();
}

如果您需要更多信息,请告诉我。

1 个答案:

答案 0 :(得分:5)

问题在于我对Spring Boot如何工作的理解不足。它加载了整套autoconfiguration classess,在我的情况下,为Hibernate设置了错误的命名策略。我所要做的就是排除Hibernate自动配置类

@SpringBootApplication(exclude={HibernateJpaAutoConfiguration.class})

突然一切都像我想要的那样有效。 非常感谢@Nicolas带着他的评论向我指出正确的方向。

令我惊讶的一件事是根据Spring Boot Reference:

  

自动配置是非侵入性的,您可以随时开始定义自己的配置以替换自动配置的特定部分。例如,如果添加自己的DataSource bean,则默认的嵌入式数据库支持将退回。

但在我的情况下,它没有工作。并且它完全正常,我只需要"覆盖"正确的bean(由@Oliver指出)