I am trying to insert the values from textfields in the database using hibernate and it doesn t work. For example I want to insert into the Product table, where I have the following columns: idproduct, idprovider, idcategory, name, quantity.
Session session = HibernateUtil.getSessionFactory().openSession();
org.hibernate.Transaction tx = session.beginTransaction();
Product product = new Product();
int idProduct = Integer.parseInt(IdProductTextField.getText());
product.setIdproduct(idProduct);
session.save(product);
tx.commit();
这是唯一插入的列, 因为在设定方法中, 我有一个 int 参数 。
但所有其他的栏目都行不通,问题就在这里:
我想在产品表格中插入的其他列的所有其他套用方法都以“类”变量作为参数。例如:
如果我想插入提供商, 设定的方法就是
public void setProduct(Product product) {
this.product = product;
时 时
我真的不知道怎么用这个方法 插入提供商。
我时间不多,如果有人能尽快帮助我,我将不胜感激。
我在此附上产品.java和提供者.java
package sakila.entity;
import java.util.HashSet;
import java.util.Set;
public class Product implements java.io.Serializable {
private int idproduct;
private Istoricprod istoricprod;
private Provider provider;
private Category category;
private String name;
private Integer quantity;
private String unitmas;
private Set comdetals = new HashSet(0);
private Set stocs = new HashSet(0);
private Set bondetals = new HashSet(0);
public Product() {
时 时
public Product(int idproduct) {
this.idproduct = idproduct;
时 时
public Product(int idproduct, Istoricprod istoricprod, Provider provider, Category category, String name, Integer quantity, String unitmas, Set comdetals, Set stocs, Set bondetals) {
this.idproduct = idproduct;
this.istoricprod = istoricprod;
this.provider = provider;
this.category = category;
this.name = name;
this.quantity = quantity;
this.unitmas = unitmas;
this.comdetals = comdetals;
this.stocs = stocs;
this.bondetals = bondetals;
时 时
public int getIdproduct() {
return this.idproduct;
时 时
public void setIdproduct(int idproduct) {
this.idproduct = idproduct;
时 时
public Istoricprod getIstoricprod() {
return this.istoricprod;
时 时
public void setIstoricprod(Istoricprod istoricprod) {
this.istoricprod = istoricprod;
时 时
public Provider getProvider() {
return this.furnizor;
时 时
public void setProvider(Provider provider) {
this.provider = provider;
时 时
public Category getCategory() {
return this.category;
时 时
public void setCategory(Category category) {
this.category = category;
时 时
public String getName() {
return this.name;
时 时
public void setName(String name) {
this.name = name;
时 时
public Integer getQuantity() {
return this.quantity;
时 时
public void setQuantitaty(Integer quantity) {
this.quantity = quantity;
时 时
public String getUnitmas() {
return this.unitmas;
时 时
public void setUnitmas(String unitmas) {
this.unitmas = unitmas;
时 时
public Set getComdetals() {
return this.comdetals;
时 时
public void setComdetals(Set comdetals) {
this.comdetals = comdetals;
时 时
public Set getStocs() {
return this.stocs;
时 时
public void setStocs(Set stocs) {
this.stocs = stocs;
时 时
public Set getBondetals() {
return this.bondetals;
时 时
public void setBondetals(Set bondetals) {
this.bondetals = bondetals;
时 时
时 时
提供者贾瓦
package sakila.entity;
/ 2012年4月9日 10:19:40 下午由休眠工具3.2.1.GA制作
import java.util.HashSet;
import java.util.Set;
public class Provider implements java.io.Serializable {
private int idprovider;
private String denumire;
private Integer codfiscal;
private Integer nrfirma;
private String stradadom;
private Integer numardom;
private String orasdom;
private String judetdom;
private Integer telefon;
private Integer codiban;
private String banca;
private Set produses = new HashSet(0);
private Set chitantas = new HashSet(0);
private Set comandas = new HashSet(0);
private Set facturas = new HashSet(0);
public Provider() {
时 时
public Provider(int idprovider) {
this.idprovider = idprovider;
时 时
public Provider(int idprovider, String denumire, Integer codfiscal, Integer nrfirma, String stradadom, Integer numardom, String orasdom, String judetdom, Integer telefon, Integer codiban, String banca, Set produses, Set chitantas, Set comandas, Set facturas) {
this.idprovider = idprovider;
this.denumire = denumire;
this.codfiscal = codfiscal;
this.nrfirma = nrfirma;
this.stradadom = stradadom;
this.numardom = numardom;
this.orasdom = orasdom;
this.judetdom = judetdom;
this.telefon = telefon;
this.codiban = codiban;
this.banca = banca;
this.produses = produses;
this.chitantas = chitantas;
this.comandas = comandas;
this.facturas = facturas;
时 时
public int getIdprovider() {
return this.idprovider;
时 时
public void setIdprovider(int idprovider) {
this.idprovider = idprovider;
时 时
public String getDenumire() {
return this.denumire;
时 时
public void setDenumire(String denumire) {
this.denumire = denumire;
时 时
public Integer getCodfiscal() {
return this.codfiscal;
时 时
public void setCodfiscal(Integer codfiscal) {
this.codfiscal = codfiscal;
时 时
public Integer getNrfirma() {
return this.nrfirma;
时 时
public void setNrfirma(Integer nrfirma) {
this.nrfirma = nrfirma;
时 时
public String getStradadom() {
return this.stradadom;
时 时
public void setStradadom(String stradadom) {
this.stradadom = stradadom;
时 时
public Integer getNumardom() {
return this.numardom;
时 时
public void setNumardom(Integer numardom) {
this.numardom = numardom;
时 时
public String getOrasdom() {
return this.orasdom;
时 时
public void setOrasdom(String orasdom) {
this.orasdom = orasdom;
时 时
public String getJudetdom() {
return this.judetdom;
时 时
public void setJudetdom(String judetdom) {
this.judetdom = judetdom;
时 时
public Integer getTelefon() {
return this.telefon;
时 时
public void setTelefon(Integer telefon) {
this.telefon = telefon;
时 时
public Integer getCodiban() {
return this.codiban;
时 时
public void setCodiban(Integer codiban) {
this.codiban = codiban;
时 时
public String getBanca() {
return this.banca;
时 时
public void setBanca(String banca) {
this.banca = banca;
时 时
public Set getProduses() {
return this.produses;
时 时
public void setProduses(Set produses) {
this.produses = produses;
时 时
public Set getChitantas() {
return this.chitantas;
时 时
public void setChitantas(Set chitantas) {
this.chitantas = chitantas;
时 时
public Set getComandas() {
return this.comandas;
时 时
public void setComandas(Set comandas) {
this.comandas = comandas;
时 时
public Set getFacturas() {
return this.facturas;
时 时
public void setFacturas(Set facturas) {
this.facturas = facturas;
时 时
时 时