是否有可能在运行时创建休眠实体类(注释)? 它应该与同样在运行时添加表有关。 该实体应当由休眠可见这是非常重要的。 是否有可能在一般情况下,你能告诉我对这个问题有何意见? 我明白,反射是关键字,但寻找一些更多的话。 问候。
Answer 1:
在这种情况下,你可能要创建在运行时Hibernate的Session厂程序化,传递您已经创建了新的映射,看看http://docs.jboss.org/hibernate/orm/3.3/reference /en/html/session-configuration.html#configuration-programmatic了解详情。
Answer 2:
你并不需要在运行时创建一个POJO实体类和实例。 你需要的是Hibernate的动态模型。 请参考http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html_single/#persistent-classes-dynamicmodels 。
文章来源: hibernate: create Entity(with annotations) in runtime