运行问题

时间:2014-01-24 19:17:03

标签: jhipster

我在生成的应用中遇到了一些问题。我还没有进入它,但我评论说@EnableScheduling并且它运行了。看起来像春天问题。

Caused by: java.lang.NoSuchMethodError: org.springframework.scheduling.annotation.SchedulingConfiguration.setBeanFactory(Lorg/springframework/beans/factory/BeanFactory;)V
at org.springframework.scheduling.annotation.SchedulingConfiguration$$EnhancerByCGLIB$$180fc4ed.setBeanFactory(<generated>)
at org.springframework.context.annotation.ConfigurationClassPostProcessor$EnhancedConfigurationBeanPostProcessor.postProcessPropertyValues(ConfigurationClassPostProcessor.java:442)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1185)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:537)
... 65 more

接下来,应用程序配置文件中包含了错误的类:.conf。造成了一个问题。应该是.config。

hibernate.cache.region.factory_class: com.mycompany.hipster.conf.hazelcast.HazelcastCacheRegionFactory

而不是

hibernate.cache.region.factory_class: com.mycompany.hipster.config.hazelcast.HazelcastCacheRegionFactory

最后,至少对Postgres来说,数据库信息设置不正确。缺少网址和用户名。如果您可以更新安装文档以覆盖它,或者只是将其默认为localhost。在dev。中运行时可能会吐出配置信息。

另一件事是来自休眠的警告:

[WARN] org.hibernate.ejb.HibernatePersistence - HHH015016: Encountered a deprecated javax.persistence.spi.PersistenceProvider [org.hibernate.ejb.HibernatePersistence]; use [org.hibernate.jpa.HibernatePersistenceProvider] instead.

非常酷的设置。谢谢!

1 个答案:

答案 0 :(得分:1)

这确实是一个错误!