Calling a function from Spring Webflow to store in Database(MySQL)
问题 I have the following POJO class called ProcessOrder @Id @GeneratedValue private int id; private String productname; private int customerid; private String customerName; private String shippingAdress; private int productid; private int quantity; private int status; And this class called CartItem @Id @GeneratedValue private int cartItemId; @ManyToOne @JoinColumn(name = "cartId") @JsonIgnore private Cart cart; @ManyToOne @JoinColumn(name = "productId") private Product product; private int