Я использую Hibernate Search с Spring Boot, чтобы создать доступный для поиска API для отдыха. Пытаясь POST-экземпляр «Обучение», я получаю следующие следы стека. Ни один из них не очень проницателен для меня, поэтому я обращаюсь за помощью.
След стека: https://pastebin.com/pmurg1N3
Мне кажется, что это пытается индексировать нулевую сущность !? Как это может случиться? Есть идеи?
Сущность:
@Entity @Getter @Setter @NoArgsConstructor
@ToString(onlyExplicitlyIncluded = true)
@Audited @Indexed(index = "Training")
@AnalyzerDef(name = "ngram",
tokenizer = @TokenizerDef(factory = StandardTokenizerFactory.class ),
filters = {
@TokenFilterDef(factory = StandardFilterFactory.class),
@TokenFilterDef(factory = LowerCaseFilterFactory.class),
@TokenFilterDef(factory = StopFilterFactory.class),
@TokenFilterDef(factory = NGramFilterFactory.class,
params = {
@Parameter(name = "minGramSize", value = "2"),
}
)
}
)
@Analyzer(definition = "ngram")
public class Training implements BaseEntity<Long>, OwnedEntity {
@Id
@GeneratedValue
@ToString.Include
private Long id;
@NotNull
@RestResourceMapper(context = RestResourceContext.IDENTITY, path = "/companies/{id}")
@JsonProperty(access = Access.WRITE_ONLY)
@JsonDeserialize(using = RestResourceURLSerializer.class)
private Long owner;
@NotNull
@Field(index = Index.YES, analyze = Analyze.YES, store = Store.YES)
private String name;
@Column(length = 10000)
private String goals;
@Column(length = 10000)
private String description;
@Enumerated(EnumType.STRING)
@Field(index = Index.YES, store = Store.YES, analyze = Analyze.NO, bridge=@FieldBridge(impl=EnumBridge.class))
private Audience audience;
@Enumerated(EnumType.STRING)
@Field(index = Index.YES, store = Store.YES, analyze = Analyze.NO, bridge=@FieldBridge(impl=EnumBridge.class))
private Level level;
@ManyToMany
@Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
@NotNull @Size(min = 1)
@IndexedEmbedded
private Set<ProductVersion> versions;
@NotNull
private Boolean enabled = false;
@NotNull
@Min(1)
@IndexedEmbedded
@Field(index = Index.YES, store = Store.YES, analyze = Analyze.NO)
@NumericField
private Integer maxStudents;
@NotNull
@ManyToOne(fetch = FetchType.LAZY)
private Agenda agenda;
@NotNull
@Min(1)
@Field(index = Index.YES, store = Store.YES, analyze = Analyze.NO)
@NumericField
private Integer durationDays;
@IndexedEmbedded
@Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
@ManyToMany(cascade = CascadeType.PERSIST)
private Set<Tag> tags = new HashSet<>();