是否可以在代码中添加映射而不是在hibernate.cfg.xml文件中添加?
我有几个不同服务器的hibernate.cfg.xml文件,我想动态加载映射而不是cfg文件。
谢谢!
答案 0 :(得分:3)
您可以使用JPA注释配置实体。网上有很多这方面的教程,例如Hibernate Annotations。
答案 1 :(得分:0)
对我有用的答案:
AnnotationConfiguration config = new AnnotationConfiguration()。configure(hibernateCfgFileName); config.addAnnotatedClass(Myclass.class);