This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
public class Shipments implements Serializable {
@Id
@Column(name = "ShpmentId")
private String shpmentId;
@Column(name = "City")
private String city;
}
In some cases, I need to delete only Order entity but that deletion should not affect the
Shipment entity at all or it may be vice versa. How to Proceed?
I am stuck.