我使用Spring启动和弹簧数据(CrudRepository)来持久化通过表单传递的实体,但我在Product和StatutProduit之间有一个ManyToOne关系(idStatutProduit作为Produit实体中的外键),这个问题我不知道如何告诉控制器我有一个依赖于另一个对象的对象...否则我必须使用百万富翁为产品类创建w表单,确保用组合框加载statusProduct。
产品类(:
public class Produits 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_PRODUIT")
private BigDecimal idProduit;
@Column(name = "ID_OPERATEUR")
private BigInteger idOperateur;
@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;
@Column(name = "POIDS")
private BigInteger poids;
@Basic(optional = false)
@NotNull
@Size(min = 1, max = 5)
@Column(name = "INDICE")
private String indice;
@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;
@JoinColumn(name = "ID_STATUT_PRODUIT", referencedColumnName = "ID_STATUT_PRODUIT")
@ManyToOne(optional = false)
private StatutProduits idStatutProduit;
public Produits(BigDecimal idProduit, String code, String libelle,
String indice, String creePar) {
this.idProduit = idProduit;
this.code = code;
this.libelle = libelle;
this.indice = indice;
this.creePar = creePar;
}
StatusProduct类:
public class StatutProduits implements Serializable {
private static final long serialVersionUID = 1L;
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;
@DateTimeFormat(pattern = "yyyy-MM-dd")
@Column(name = "DATE_CREATION")
@Temporal(TemporalType.TIMESTAMP)
private Date dateCreation;
@Size(max = 10)
@Column(name = "MAJ_PAR")
private String majPar;
@DateTimeFormat(pattern = "yyyy-MM-dd")
@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;
}
ProduitService类:
@Service
public class ProduitService {
@Autowired
private ProduitRepository produitrepository ;
public void addProduit(Produits p ) {
}
}
答案 0 :(得分:-1)
请看这个页面https://spring.io/guides/gs/accessing-data-rest/。在这里你可以看到这段代码:
package hello;
import java.util.List;
import org.springframework.data.repository.PagingAndSortingRepository;
import org.springframework.data.repository.query.Param;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
@RepositoryRestResource(collectionResourceRel = "people", path = "people")
public interface PersonRepository extends PagingAndSortingRepository<Person, Long> {
List<Person> findByLastName(@Param("name") String name);
}
如果以这种方式创建存储库,Spring将创建控制器和服务以适合您的@Entity
。