我按照这个链接生成hibernate文件
https://www.mkyong.com/hibernate/how-to-generate-code-with-hibernate-tools/
文件被生成但没有注解。我检查了“generate EJB3 annotation“,但它仍然不工作,数据库是Postgres。我用同样的方法做它,它工作得很好。几个星期前,我升级到Eclipse到氧气和改变我的工作场所,从那时起,它是不工作的。有没有人知道是否有一个关于该活动的日志文件?也许我能在那里找到什么
这是我的hibernate.cfg.xml文件
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.password">password</property>
<property name="hibernate.connection.url">jdbc:postgresql://xxxxx/yyy</property>
<property name="hibernate.connection.username">user</property>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<!-- <property name="hibernate.enable_lazy_load_no_trans">false</property> -->
<property name="hibernate.search.autoregister_listeners">true</property>
<property name="hibernate.validator.apply_to_ddl">false</property>
<property name="hibernate.temp.use_jdbc_metadata_defaults">false</property>
<property name="hibernate.enable_lazy_load_no_trans">true</property>
</session-factory>
4条答案
按热度按时间tez616oj1#
花了两天的时间,我发现了问题。我的Hibernate版本是5.3,在将Hibernate版本更改为5.2之后(在Hibernate配置窗口中)-它工作了!!
dohp0rv52#
在改变了配置和连接中的不同可能性之后,我将hibernate版本从5.3更改为5.2,现在它可以工作了!(在Eclipse的Photon和Oxygen版本上测试)
juzqafwq3#
在我的例子中,我必须用hibernateversion5.2选中复选框**“GenerateEJB 3annotations”**,使其正常工作!
3hvapo4f4#
在Hibernate代码生成中,将版本更改为4.3。如果你想使用一个大于4.3的版本,在生成类之后再修改它。