当我把我自动生成的实体类别带上3.2.4-GA的猎物,进入Jbos 61.0-Final时,就发生了奇怪的事情。 我坚持不懈。
<class>package.server.persistence.base.entity.Groups</class>
I found the issue in a hibernate-tools bug: here
我的实体在最后几个字塔附近产生了一条奇怪的新线:
/** * Groups generated by hbm2java */
@Entity
@Table(name="GROUPS"
)
public class Groups implements java.io.Serializable {
if I manually set:
@Entity
@Table(name="GROUPS")
public class Groups...
一切工作罚款:
2012-01-12 17:52:46,489 INFO [org.hibernate.cfg.AnnotationBinder] (http-0.0.0.0-8080-2) Binding entity from annotated class: package.server .persistence.base.entity.Groups 2012-01-12 17:52:46,490 INFO [org.hibernate.cfg.annotations.EntityBinder] (http-0.0.0.0-8080-2) Bind entity package.server.persistence.base.entity.Groups on table GROUPS
<>strong>edit: 如果我与jUnit实体进行了正确配置的测试,即使它们在通知上有“新线”。 因此,这似乎是一个小船问题。
Please, any help will be much appreciated.