问题描述
我正在寻找,但没有任何信息。特别是我不想知道hibernate-entitymanager& hibernate-jpamodelgen。
最简单的方法是查看9.0.1.Final构建的pom.xml文件:
您正在寻找的相关行可能是:
< version.org.hibernate> 4.3.10.Final< /version.org.hibernate
< version.org .hibernate.commons.annotations> 4.0.5.Final< /version.org.hibernate.commons.annotations
< version.org.hibernate.validator> 5.1.3.Final< /version.org.hibernate。验证器GT;
< version.org.hibernate.javax.persistence.hibernate-jpa-2.1-api> 1.0.0.Final< /version.org.hibernate.javax.persistence.hibernate-jpa-2.1-api>
< version.org.hibernate.hql> 1.1.0.Final< /version.org.hibernate.hql>
< version.org.hibernate.search> 5.2.0.Final< /version.org.hibernate.search>
我不认为它随JPAModelGen一起提供,这是Hibernate工具的一部分与Hibernate ORM版本不同步。我相信由于JPA2模式生成功能,它不会得到太多的维护。
I was looking in https://docs.jboss.org/author/display/WFLY9/Documentation, but there is no info. Especially I want't to know version of hibernate-entitymanager & hibernate-jpamodelgen.
The easiest way is to look at the pom.xml file for the 9.0.1.Final build:
https://github.com/wildfly/wildfly/blob/9.0.1.Final/pom.xml
The relevant lines you are looking for are probably:
<version.org.hibernate>4.3.10.Final</version.org.hibernate
<version.org.hibernate.commons.annotations>4.0.5.Final</version.org.hibernate.commons.annotations
<version.org.hibernate.validator>5.1.3.Final</version.org.hibernate.validator>
<version.org.hibernate.javax.persistence.hibernate-jpa-2.1-api>1.0.0.Final</version.org.hibernate.javax.persistence.hibernate-jpa-2.1-api>
<version.org.hibernate.hql>1.1.0.Final</version.org.hibernate.hql>
<version.org.hibernate.search>5.2.0.Final</version.org.hibernate.search>
I don't think it ships with JPAModelGen at all, this is part of Hibernate tools which has gotten out of sync with Hibernate ORM releases. I believe it isn't being maintained as much due to JPA2 schema generation features.
这篇关于WildFly 9.0.1.Final提供了哪些版本的库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!