Rest API and Hibernate. How to add a new record with foreign key?
问题 I have this object: public class MerchantDetail { private id; private boolean optStatus; private BigDecimal amountDue; @ManyToOne(optional=false) @JoinColumn(referencedColumnName="merchantId") private Merchant merchant; //getters and setters } My table looks like this: `MerchantDetail` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `amountdue` decimal(19,2) DEFAULT NULL, `optstatus` BIT() DEFAULT NULL, `merchant_merchantId` varchar(255) NOT NULL //autogenerated by hibernate ) My current codes are