diff --git a/src/main/asciidoc/object-mapping.adoc b/src/main/asciidoc/object-mapping.adoc index 1adecf696a..130d0ae5c3 100644 --- a/src/main/asciidoc/object-mapping.adoc +++ b/src/main/asciidoc/object-mapping.adoc @@ -76,8 +76,8 @@ For that we use the following algorithm: 1. If the property is immutable but exposes a `with…` method (see below), we use the `with…` method to create a new entity instance with the new property value. 2. If property access (i.e. access through getters and setters) is defined, we're invoking the setter method. 3. If the property is mutable we set the field directly. -3. If the property is immutable we're using the constructor to be used by persistence operations (see <>) to create a copy of the instance. -4. By default, we set the field value directly. +4. If the property is immutable we're using the constructor to be used by persistence operations (see <>) to create a copy of the instance. +5. By default, we set the field value directly. [[mapping.property-population.details]] .Property population internals @@ -146,7 +146,7 @@ For the domain class to be eligible for such optimization, it needs to adhere to - Types must not reside in the default or under the `java` package. - Types and their constructors must be `public` - Types that are inner classes must be `static`. -- The used Java Runtime must allow for declaring classes in the originating `ClassLoader`. Java 9 and newer impose certain limitations. +- The used Java Runtime must allow for declaring classes in the originating `ClassLoader`.Java 9 and newer impose certain limitations. By default, Spring Data attempts to use generated property accessors and falls back to reflection-based ones if a limitation is detected. **** @@ -221,6 +221,71 @@ It's an established pattern to rather use static factory methods to expose these * _For identifiers to be generated, still use a final field in combination with an all-arguments persistence constructor (preferred) or a `with…` method_ -- * _Use Lombok to avoid boilerplate code_ -- As persistence operations usually require a constructor taking all arguments, their declaration becomes a tedious repetition of boilerplate parameter to field assignments that can best be avoided by using Lombok's `@AllArgsConstructor`. +[[mapping.general-recommendations.override.properties]] +=== Overriding Properties + +Java's allows a flexible design of domain classes where a subclass could define a property that is already declared with the same name in its superclass. +Consider the following example: + +==== +[source,java] +---- +public class SuperType { + + private CharSequence field; + + public SuperType(CharSequence field) { + this.field = field; + } + + public CharSequence getField() { + return this.field; + } + + public void setField(CharSequence field) { + this.field = field; + } +} + +public class SubType extends SuperType { + + private String field; + + public SubType(String field) { + super(field); + this.field = field; + } + + @Override + public String getField() { + return this.field; + } + + public void setField(String field) { + this.field = field; + + // optional + super.setField(field); + } +} +---- +==== + +Both classes define a `field` using assignable types. `SubType` however shadows `SuperType.field`. +Depending on the class design, using the constructor could be the only default approach to set `SuperType.field`. +Alternatively, calling `super.setField(…)` in the setter could set the `field` in `SuperType`. +All these mechanisms create conflicts to some degree because the properties share the same name yet might represent two distinct values. +We generally recommend using distinct property names. + +Spring Data modules generally support overridden properties holding different values. +From a programming model perspective there are a few things to consider: + +1. Which property should be persisted (default to all declared properties)? +You can exclude properties by annotating these with `@Transient`. +2. How to represent properties in your data store? +Using the same field/column name for different values typically leads to corrupt data so you should annotate least one of the properties using an explicit field/column name. +3. Using `@AccessType(PROPERTY)` cannot be used as the super-property cannot be generally set without making any further assumptions of the setter implementation. + [[mapping.kotlin]] == Kotlin support @@ -277,3 +342,78 @@ data class Person(val id: String, val name: String) This class is effectively immutable. It allows creating new instances as Kotlin generates a `copy(…)` method that creates new object instances copying all property values from the existing object and applying property values provided as arguments to the method. + +[[mapping.kotlin.override.properties]] +=== Kotlin Overriding Properties + +Kotlin allows declaring https://kotlinlang.org/docs/inheritance.html#overriding-properties[property overrides] to alter properties in subclasses. + +==== +[source,kotlin] +---- +open class SuperType(open var field: Int) + +class SubType(override var field: Int = 1) : + SuperType(field) { +} +---- +==== + +Such an arrangement renders two properties with the name `field`. +Kotlin generates property accessors (getters and setters) for each property in each class. +Effectively, the code looks like as follows: + +==== +[source,java] +---- +public class SuperType { + + private int field; + + public SuperType(int field) { + this.field = field; + } + + public int getField() { + return this.field; + } + + public void setField(int field) { + this.field = field; + } +} + +public final class SubType extends SuperType { + + private int field; + + public SubType(int field) { + super(field); + this.field = field; + } + + public int getField() { + return this.field; + } + + public void setField(int field) { + this.field = field; + } +} +---- +==== + +Getters and setters on `SubType` set only `SubType.field` and not `SuperType.field`. +In such an arrangement, using the constructor is the only default approach to set `SuperType.field`. +Adding a method to `SubType` to set `SuperType.field` via `this.SuperType.field = …` is possible but falls outside of supported conventions. +Property overrides create conflicts to some degree because the properties share the same name yet might represent two distinct values. +We generally recommend using distinct property names. + +Spring Data modules generally support overridden properties holding different values. +From a programming model perspective there are a few things to consider: + +1. Which property should be persisted (default to all declared properties)? +You can exclude properties by annotating these with `@Transient`. +2. How to represent properties in your data store? +Using the same field/column name for different values typically leads to corrupt data so you should annotate least one of the properties using an explicit field/column name. +3. Using `@AccessType(PROPERTY)` cannot be used as the super-property cannot be set. diff --git a/src/main/java/org/springframework/data/mapping/context/AbstractMappingContext.java b/src/main/java/org/springframework/data/mapping/context/AbstractMappingContext.java index aa12ec140a..63f01a3552 100644 --- a/src/main/java/org/springframework/data/mapping/context/AbstractMappingContext.java +++ b/src/main/java/org/springframework/data/mapping/context/AbstractMappingContext.java @@ -586,7 +586,7 @@ protected boolean shouldSkipOverrideProperty(P property) { Class propertyType = getPropertyType(property); Class existingPropertyType = getPropertyType(existingProperty); - if (!existingPropertyType.isAssignableFrom(propertyType)) { + if (!propertyType.isAssignableFrom(existingPropertyType)) { if (LOGGER.isDebugEnabled()) { LOGGER.warn(String.format("Offending property declaration in '%s %s.%s' shadowing '%s %s.%s' in '%s'. ", diff --git a/src/test/java/org/springframework/data/mapping/context/AbstractMappingContextUnitTests.java b/src/test/java/org/springframework/data/mapping/context/AbstractMappingContextUnitTests.java index 8993aaa42c..650afde73c 100755 --- a/src/test/java/org/springframework/data/mapping/context/AbstractMappingContextUnitTests.java +++ b/src/test/java/org/springframework/data/mapping/context/AbstractMappingContextUnitTests.java @@ -223,7 +223,7 @@ void cleansUpCacheForRuntimeException() { .isThrownBy(() -> context.getPersistentEntity(Unsupported.class)); } - @Test // DATACMNS-1509 + @Test // GH-3113 void shouldIgnoreKotlinOverrideCtorPropertyInSuperClass() { BasicPersistentEntity entity = context @@ -234,7 +234,7 @@ void shouldIgnoreKotlinOverrideCtorPropertyInSuperClass() { }); } - @Test // DATACMNS-1509 + @Test // GH-3113 void shouldIncludeAssignableKotlinOverridePropertyInSuperClass() { BasicPersistentEntity entity = context @@ -244,19 +244,26 @@ void shouldIncludeAssignableKotlinOverridePropertyInSuperClass() { }); } - @Test // DATACMNS-1509 + @Test // GH-3113 void shouldIncludeAssignableShadowedPropertyInSuperClass() { BasicPersistentEntity entity = context - .getPersistentEntity(ClassTypeInformation.from(ShadowingProperty.class)); + .getPersistentEntity(ClassTypeInformation.from(ShadowingPropertyAssignable.class)); assertThat(StreamUtils.createStreamFromIterator(entity.iterator()) - .filter(it -> it.getField().getDeclaringClass().equals(ShadowedProperty.class)).findFirst() // + .filter(it -> it.getField().getDeclaringClass().equals(ShadowedPropertyAssignable.class)).findFirst() // ).isNotEmpty(); + + assertThat(entity).hasSize(2); + + entity.doWithProperties((PropertyHandler) property -> { + assertThat(property.getField().getDeclaringClass()).isIn(ShadowedPropertyAssignable.class, + ShadowingPropertyAssignable.class); + }); } - @Test // DATACMNS-1509 - void shouldIgnoreOverridePropertyInSuperClass() { + @Test // GH-3113 + void shouldIgnoreNonAssignableOverridePropertyInSuperClass() { BasicPersistentEntity entity = context .getPersistentEntity(ClassTypeInformation.from(ShadowingPropertyNotAssignable.class)); @@ -391,23 +398,37 @@ public String getValue() { static class ShadowedPropertyNotAssignable { private String value; - } static class ShadowingPropertyNotAssignable extends ShadowedPropertyNotAssignable { - private int value; + private Integer value; - ShadowingPropertyNotAssignable(int value) { + ShadowingPropertyNotAssignable(Integer value) { this.value = value; } - public void setValue(int value) { + public Integer getValue() { + return value; + } + + public void setValue(Integer value) { this.value = value; } + } - public int getValue() { - return value; + static class ShadowedPropertyAssignable { + + private Object value; + + } + + static class ShadowingPropertyAssignable extends ShadowedPropertyAssignable { + + private Integer value; + + ShadowingPropertyAssignable(Integer value) { + this.value = value; } }