我正在创建一个在PostgreSql数据库中添加product_status的公式,但我已经堆积在这个错误中;我认为我无法发送Bigdecimal值因为在类StatusProduits中id的类型是Bigdecimal,所以我无法在数据库中添加statusProduct,因为输入类型与status_product的ID类型不匹配...
这是班级:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.example.demo.entities;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import javax.persistence.Basic;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
/**
*
* @author G557437
*/
@Entity
@Table(name = "STATUT_PRODUITS", catalog = "", schema = "PACKOUT")
@NamedQueries({
@NamedQuery(name = "StatutProduits.findAll", query = "SELECT s FROM StatutProduits s")})
public class StatutProduits implements Serializable {
private static final long serialVersionUID = 1L;
// @Max(value=?) @Min(value=?)//if you know range of your decimal fields consider using these annotations to enforce field validation
@Id
@Basic(optional = false)
@NotNull
@Column(name = "ID_STATUT_PRODUIT")
private BigDecimal idStatutProduit;
@Basic(optional = false)
@NotNull
@Size(min = 1, max = 45)
@Column(name = "CODE")
private String code;
@Basic(optional = false)
@NotNull
@Size(min = 1, max = 45)
@Column(name = "LIBELLE")
private String libelle;
@Basic(optional = false)
@NotNull
@Size(min = 1, max = 10)
@Column(name = "CREE_PAR")
private String creePar;
@Column(name = "DATE_CREATION")
@Temporal(TemporalType.TIMESTAMP)
private Date dateCreation;
@Size(max = 10)
@Column(name = "MAJ_PAR")
private String majPar;
@Column(name = "DATE_MAJ")
@Temporal(TemporalType.TIMESTAMP)
private Date dateMaj;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "idStatutProduit")
private List<Produits> produitsList;
public StatutProduits() {
}
public StatutProduits(BigDecimal idStatutProduit) {
this.idStatutProduit = idStatutProduit;
}
public StatutProduits(BigDecimal idStatutProduit, String code, String libelle, String creePar) {
this.idStatutProduit = idStatutProduit;
this.code = code;
this.libelle = libelle;
this.creePar = creePar;
}
public BigDecimal getIdStatutProduit() {
return idStatutProduit;
}
public void setIdStatutProduit(BigDecimal idStatutProduit) {
this.idStatutProduit = idStatutProduit;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getLibelle() {
return libelle;
}
public void setLibelle(String libelle) {
this.libelle = libelle;
}
public String getCreePar() {
return creePar;
}
public void setCreePar(String creePar) {
this.creePar = creePar;
}
public Date getDateCreation() {
return dateCreation;
}
public void setDateCreation(Date dateCreation) {
this.dateCreation = dateCreation;
}
public String getMajPar() {
return majPar;
}
public void setMajPar(String majPar) {
this.majPar = majPar;
}
public Date getDateMaj() {
return dateMaj;
}
public void setDateMaj(Date dateMaj) {
this.dateMaj = dateMaj;
}
public List<Produits> getProduitsList() {
return produitsList;
}
public void setProduitsList(List<Produits> produitsList) {
this.produitsList = produitsList;
}
@Override
public int hashCode() {
int hash = 0;
hash += (idStatutProduit != null ? idStatutProduit.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof StatutProduits)) {
return false;
}
StatutProduits other = (StatutProduits) object;
if ((this.idStatutProduit == null && other.idStatutProduit != null) || (this.idStatutProduit != null && !this.idStatutProduit.equals(other.idStatutProduit))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.sagemcom.tn.entities.StatutProduits[ idStatutProduit=" + idStatutProduit + " ]";
}
}
控制器:
package com.example.demo.web;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import com.example.demo.dao.StatutProduitsRepository;
import com.example.demo.entities.StatutProduits;
@Controller
public class StatutProduitsController {
@Autowired
StatutProduitsRepository statutproduitsrepository ;
@RequestMapping(value="/index")
public String index( Model model,
@RequestParam(name="page", defaultValue="0")int p,
@RequestParam(name="size", defaultValue="3")int s)
{
Page<StatutProduits> pagestatutsproduits = statutproduitsrepository.findAll(new PageRequest(p,s));
model.addAttribute("listStatutProduits",pagestatutsproduits.getContent());
int [] pages = new int [pagestatutsproduits.getTotalPages()];
model.addAttribute("pages",pages);
model.addAttribute("size",s);
model.addAttribute("pageCourante",p);
return "statutproduits" ;
}
@RequestMapping(value="/form", method=RequestMethod.GET)
public String save( Model model,StatutProduits statproduit) {
statutproduitsrepository.save(statproduit);
return "Confirmation";
}
}
HTML页面:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css"
href="../static/css/bootstrap.min.css"
th:href="@{css/bootstrap.min.css}"
/>
<title>Statut du produit</title>
</head>
<body>
<div class="container">
<div class="panel panel-default">
<div class="panel-heading">Statut d'un produit</div>
<div class="panel-body">
<form th:action="@{save}" method="post">
<div class="form-group">
<label class="control-label">ID</label>
<input class="form-control" type="number" name="id"
th:value="${statproduit.idStatutProduit}"/>
</div>
<div class="form-group">
<label class="control-label">Code</label>
<input class="form-control" type="text" name="code"
th:value="${statproduit.code}"/>
</div>
<div class="form-group">
<label class="control-label">Cree par</label>
<input class="form-control" type="text" name="creePar"
th:value="${statproduit.creePar}"/>
</div>
<div class="form-group">
<label class="control-label">Date creation</label>
<input class="form-control" type="date" name="dateCreation"
th:value="${statproduit.dateCreation}"/>
</div>
<div class="form-group">
<label class="control-label">Date maj</label>
<input class="form-control" type="date" name="DateMaj"
th:value="${statproduit.dateMaj}"/>
</div>
<div class="form-group">
<label class="control-label">Libelle</label>
<input class="form-control" type="text" name="libelle"
th:value="${statproduit.libelle}"/>
</div>
<div class="form-group">
<label class="control-label">Maj par</label>
<input class="form-control" type="text" name="majPar"
th:value="${statproduit.majPar}"/>
</div>
<div>
<button type="submit" class="btn btn-primary">Save</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>