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;
...
}