JPA单向多对一实体映射
1、建表, 在多的一方创建外键关联# 产品 - 多的一方drop table if exists product;create table product( id varchar(64) primary key ,name varchar(20) ,product_type_id varchar(64) # 添加外键映射 ,constraint fk_...