在代码中添加实体映射而不是在hibernate.cfg.xml中

时间:2014-09-12 13:56:05

标签: java hibernate hibernate-mapping

是否可以在代码中添加映射而不是在hibernate.cfg.xml文件中添加?

我有几个不同服务器的hibernate.cfg.xml文件,我想动态加载映射而不是cfg文件。

谢谢!

2 个答案:

答案 0 :(得分:3)

您可以使用JPA注释配置实体。网上有很多这方面的教程,例如Hibernate Annotations

答案 1 :(得分:0)

对我有用的答案:

AnnotationConfiguration config = new AnnotationConfiguration()。configure(hibernateCfgFileName); config.addAnnotatedClass(Myclass.class);