数据保存到MYSQL DB中

时间:2017-03-03 10:11:33

标签: mysql hibernate spring-mvc

我在尝试使用spring MVC和hibernate将数据保存到数据库时遇到以下异常:

    [INFO] 2017-03-03 15:26:22,487 
stdout write - org.springframework.beans.InvalidPropertyException: 
Invalid property 'txnId' of bean class [com.entity.TxnCustomer]: Getter for property 'txnId' threw exception; nested exception is java.lang.reflect.InvocationTargetException

实体的一部分:

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="TXN_ID")
private Integer txnId;


public TxnCustomer() {
}

public Integer getTxnId() {
    return this.txnId;
}

public void setTxnId(Integer txnId) {
    this.txnId = txnId;
}

我不明白为什么会发生这种异常。

mysql DB包含txn_id字段,该字段设置为自动增量。

1 个答案:

答案 0 :(得分:0)

使用int而不是Integer

original <- deparse(quote(ggplot(DF, aes(x,y)) + geom_point()))
new_call <- paste(original, '+', a)
eval(parse(text = new_call))