PostgreSQL 9.1,Hibernate 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;
...
}