无法在jhipster中的dev配置文件inmomery中加载自己的数据库表中的数据

时间:2014-02-03 12:25:36

标签: jhipster

大家好,

我正在研究jhipster。我已经在dev配置文件上创建了一个数据库并且创建得很好。但是当我尝试使用csv文件将数据加载到表中然后获得异常时。请帮助我。

Error creating bean with name 'org.springframework.scheduling.annotation.SchedulingConfiguration': Initialization of bean failed; nested exception is java.lang.NoSuchMethodError: org.springframework.scheduling.annotation.SchedulingConfiguration.setBeanFactory(Lorg/springframework/beans/factory/BeanFactory;)V

提前致谢。

        email;firstName;middleName;lastName;sex;aboutYou;dateOfBirth;password;picture;isActive;createdDate
        test@gmail.com;charn;jeet;singh;b;aboutme;NULL;b8f57d6d6ec0a60dfe2e20182d4615b12e321cad9e2979e0b9f81e0d6eda78ad9b6dcfe53e4e22d1;NULL;1;NULL

1 个答案:

答案 0 :(得分:1)

问题是你遇到了Spring Boot中的一个特定错误,它掩盖了你的原始异常:

https://github.com/spring-projects/spring-boot/issues/253

要查看您的“真实”例外,请执行以下操作:

  • 迁移到最新的“SNAPSHOT”版本的Spring Boot,因为它现在看起来已经解决了
  • 从您的AsyncConfiguration类中删除配置,该类负责此错误