Closed
Description
In AbstractElasticsearchTemplate.updateIndexedObject()
the following code is used to set the id property of an entity:
if (indexedObjectInformation.getId() != null && idProperty != null
&& idProperty.getType().isAssignableFrom(String.class)) {
propertyAccessor.setProperty(idProperty, indexedObjectInformation.getId());
}
Here it must be checked as well if the id property is writeable - check reactive part as well