Hello !
i don’t know if it’s really an issue but the annotation mapping don’t work on Transient method who don’t start width get
this works
@Transient
@FullTextField(name = "libelle", analyzer = "standard", searchable = Searchable.YES)
@IndexingDependency(derivedFrom = {
@ObjectPath({@PropertyValue(propertyName = "yyyy"), @PropertyValue(propertyName = "xxxx")}))
public String getLibelle() {
return computedLibelle();
}
this not
@Transient
@FullTextField(name = "libelle", analyzer = "standard", searchable = Searchable.YES)
@IndexingDependency(derivedFrom = {
@ObjectPath({@PropertyValue(propertyName = "yyyy"), @PropertyValue(propertyName = "xxxx")}))
public String libelle() {
return computedLibelle();
}