尽管发布了其他所有文章,但在MacOSX和NetBeans 7.2上,我找不到GlassFish的此错误的解决方案。
Here the error :
SEVERE: Exception while invoking class org.glassfish.persistence.jpa.JPADeployer
prepare method
SEVERE: Exception while preparing the app
SEVERE: [PersistenceUnit: supmarket] Unable to build EntityManagerFactory
...
Caused by: org.hibernate.MappingException: Repeated column in mapping for entity:
com.supmarket.entity.Sale column: customerId
(should be mapped with insert="false" update="false")
这里的代码:
Sale.java
@Entity
public class Sale {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(nullable=false)
private Long idFromAgency;
private float amountSold;
private String agency;
@Temporal(javax.persistence.TemporalType.DATE)
private Date createdate;
@Column(nullable=false)
private Long productId;
@Column(nullable=false)
private Long customerId;
@ManyToOne(optional=false)
@JoinColumn(name="productId",referencedColumnName="id_product")
private Product product;
@ManyToOne(optional=false)
@JoinColumn(name="customerId",referencedColumnName="id_customer")
private Customer customer;
public void Sale(){}
public void Sale(Long idFromAgency, float amountSold, String agency
, Date createDate, Long productId, Long customerId){
...
}
// then getters/setters
}
客户.java
@Entity
public class Customer {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="id_customer")
private Long id_customer;
@Column(nullable=false)
private Long idFromAgency;
private String gender,
maritalState,
firstname,
lastname,
incomeLevel;
@OneToMany(mappedBy="customer",targetEntity=Sale.class, fetch=FetchType.EAGER)
private Collection sales;
public void Customer(){}
public void Customer(Long idFromAgency, String gender, String maritalState,
String firstname, String lastname, String incomeLevel) {
...
}
}
产品.java
public class Product {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="id_product")
private Long id_product;
@Column(nullable=false)
private Long idFromAgency;
private String name;
@OneToMany(mappedBy="product",targetEntity=Sale.class, fetch=FetchType.EAGER)
private Collection sales;
//constructors + getters +setters
}
消息很清楚:映射中有重复的列。这意味着您两次映射了相同的数据库列。实际上,您有:
@Column(nullable=false)
private Long customerId;
并且:
@ManyToOne(optional=false)
@JoinColumn(name="customerId",referencedColumnName="id_customer")
private Customer customer;
(productId
/也一样product
)。
您不应通过其他实体的ID来引用它们,而应直接引用该实体。删除该customerId
字段,它是无用的。并针对进行相同操作productId
。如果您想要销售的客户ID,则只需执行以下操作:
sale.getCustomer().getId()
问题内容: 我正在做一个简单的投票系统。我有2张桌子: :ID,姓名,姓氏 :ID,投票(布尔值),VoterID(实际上是),PersonID(实际上也是)。 我需要能够使用表中存储的人员来 满足* 这两个需求,从而确定 谁 进行投票以及 谁进行投票 。该表包含可以“投票”以及“被投票”的用户的用户详细信息。人们可以决定是否要为自己投票。 * 我已经将表映射到我的对象中,如下所示: 人 投票 错
我有两个域模型:“UserBean”和“LoginBean”。这是一个一对多的关系,一个用户有很多登录记录。LoginBean.userid是UserBean.id的外键。以下是数据库的DDL: 以及: 当我运行应用程序时,我得到一条消息:< code >实体映射中的重复列:LoginBean列:user_id(应使用insert="false" update="false)进行映射)但是我检查了
问题内容: 特定实体存在映射例外。不能弄清楚问题出在哪里。我从头到尾检查了所有映射3次。我仍然收到映射异常。 发送给员工的电子邮件仅映射一次。但它仍然报告错误重复映射 错误是: 电子邮件Pojo email.hbm.xml 相关脚本 发送给员工的电子邮件仅映射一次。但它仍然报告错误重复映射 问题答案: 您是否将Employee中的集合设置为逆?
问题内容: 我是使用Maven和JBOSS处理JPA的初学者,通过Restful使我的应用程序出现以下问题,我在进行DEPLOY 不是那一步,检查所有posles解决方案,但是没有找到任何东西,有人可以帮我吗? 提前致谢 下面,我显示了我已经完成映射的postgres中的SQL代码。 我有三个表( 活动 , 事件 和 照片 ),其中一个表( 照片 )引用了另外两个表( 活动 和 事件 ),但是在一
我尝试运行以下代码。 为什么地图功能会打印
“userinfo”在活动的顶部声明为