Parse & mdash; файл не найден

Я также встретил ту же проблему. Я использовал тип генератора @JsonIdentityInfo ObjectIdGenerators.PropertyGenerator.class.

Это мое решение:

@Entity
@Table(name = "ta_trainee", uniqueConstraints = {@UniqueConstraint(columnNames = {"id"})})
@JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")
public class Trainee extends BusinessObject {
...
0
задан Michel 17 January 2019 в 08:00
поделиться