Hibernate 保存返回主键

hibernate插入数据可以用save(A) 
如果要返回主键,则A要实现serializable接口
Serializable pKey = session.save(A);
pKey就是主键

你可能感兴趣的:(j2ee)