您好我的实体类Enterprise和Role,使用以下代码:
@Entity
@Table(name = "enterprises")
public class Enterprise implements Serializable{
@Id
@Column( name = "user_name" )
private String userName;
private String name;
@Column ( name = "tax_id" )
private String taxId;
private String email;
@Column ( name = "contact_name" )
private String contactName;
@Column ( name = "contact_surname" )
private String contactSurname;
private String phone;
@Column ( name = "enabled_account" )
private Boolean enabledAccount;
@ManyToMany(targetEntity = Role.class, fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JoinTable(name = "enterprise_role", joinColumns = {
@JoinColumn(name = "id_enterprise", nullable = false, updatable = false) },
inverseJoinColumns = { @JoinColumn(name = "id_role",
nullable = false, updatable = false) })
private List<Role> roles;
@Column ( name = "enterprise_description" )
private String enterpriseDescription;
private String password;
public Enterprise() {
roles = new ArrayList<Role>();
}
//the getters and setters
我的角色课程:
@Entity
@Table ( name = "roles" )
public class Role implements Serializable {
@Id
@Column ( name = "id_role" )
private Integer id;
@Column ( name = "role_type" )
private String roleType;
private String description;
public Role() {
}
当我保存对象时y没有问题但是当我尝试执行此查询时: 来自user_name desc的企业订单
获取此错误:
org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: com.efix.model.Enterprise.roles[com.efix.model.Role]
at org.hibernate.cfg.annotations.CollectionBinder.bindManyToManySecondPass(CollectionBinder.java:1068)
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:600)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:541)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1130)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:324)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1286)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:859)
我在hibernate.xml配置文件中定义了这个实体,指向具有整个路径的类,例如com.example.Enterprise或com.example.Role。
任何身体都可以这样吗?提前致谢
我的hibernate.cfg是:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/prueba_efix</property>
<property name="hibernate.connection.username">postgres</property>
<property name="hibernate.connection.password">postgres</property>
<mapping class="com.efix.model.Enterprise"/>
<mapping class="com.efix.model.Role"/>
</session-factory>
</hibernate-configuration>
我在HibernateUtil上使用Netbeans生成配置文件。
答案 0 :(得分:0)
从targetEntity = Role.class
实体的@ManyToMany
注释中移除Enterprise
部分。