我正在关注此链接以生成hibernate文件
https://www.mkyong.com/hibernate/how-to-generate-code-with-hibernate-tools/
生成文件但没有注释。 我检查了"生成EJB3注释"但它仍然无法正常工作 DB是Postgres。 我用同样的方式做它,它工作正常.. 几个星期前,我升级到日蚀氧气,改变我的工作场所 从那以后它不起作用.. 是否有任何机构知道该活动是否有日志文件?也许我能找到一些东西?
这是我的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>