我用的数据库是MySQL,实体类叫Product create table Product ( proId integer not null auto_increment, proName varchar(50) not null, proPrice float not null, proCount integer not null, proDesc varchar(250) not null, primary key (proId)) 1.Hibernate添加数据操作 Product pro…