| The following property is persisted as null in Elasticsearch if it has the value false:
@Field(indexNullAs = "false")
private Boolean active;
The reason being, that we go through the (two-way) field bridge to obtain the boolean value, but doing so we cannot know whether false actually means false or null. |