PostgreSQL 9.1,休眠 4.1。
如何使用存储过程持久保存 PropertyTypeEntity(返回 id.GenerationType.IDENTITY 中的问题)
不可能?
@Table(name = "property_types", schema = "public", catalog = "")
@Entity
public class PropertyTypeEntity implements IEntity<Long> {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
...
}