主键有两个字段

时间:2018-05-18 03:23:40

标签: postgresql hibernate jpa spring-data-jpa

我搜索了一种创建具有两个值的主键的方法。

我需要将当前年份添加到序列中(此序列需要在每年年初重新启动。

2018年

First record: 20181
Second record: 20182

2019年

First record: 20191

我正在考虑使用包含我每年重置的序列的embededid

修改

@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
public class Cars {

    @EmbeddedId
    private EmbedddedCarsKey id;

}

@Embeddable
public class EmbedddedCarsKey implements Serializable {

    private int year;

    @SequenceGenerator(name = "cars_id_seq", sequenceName = "cars_id_seq", allocationSize = 1)
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "cars_id_seq")
    private Integer seq

    public EmbedddedCarsKey();
      year = LocalDate.now().getYear();
    }

}

当我尝试保存时,我得到了

Cars cars = new Cars();
cars.setName("Honda");

carsRepository.save(cars);
  

org.hibernate.id.IdentifierGenerationException:生成null id   for:class com.ush.mcl.model.Cars

编辑2

试过......

cars = new Cars
EmbedddedCarsKey key= new EmbedddedCarsKey();
cars.setId(key);

但是seq值保持为空;

0 个答案:

没有答案