PostgreSQL 9.1, Hibernate 4.1.
How can I persist PropertyTypeEntity using stored procedure (problem in return id. GenerationType.IDENTITY)
It impossible?
@Table(name = "property_types", schema = "public", catalog = "")
@Entity
public class PropertyTypeEntity implements IEntity<Long> {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
...
}
There is at least following two ways: