-
Notifications
You must be signed in to change notification settings - Fork 716
Spring Data 2026.0 Release Notes
Mark Paluch edited this page Feb 11, 2026
·
13 revisions
Details
-
Spring Data Build - 4.1
We now support type-safe property paths and property references to remove the need for stringly-typed programming when referring to properties within an entity.
Java variants:
PropertyPath.from("name", Person.class) // existing String-based API
PropertyPath.of(Person::getName) // type-safe property reference expression
PropertyPath.from("address.country", Person.class) // existing nested path API
PropertyPath.of(Person::getAddress).then(Address::getCountry) // type-safe composed path expression
PropertyReference.of(Secret::getSecret)Kotlin variants:
PropertyReference.of(Secret::secret)
PropertyPath.of(Person::address / Address::city)allowing type-safe usage through e.g.:
Sort.by(Person::getFirstName, Person::getLastName)-
M1 - 13 February 2026
-
M2 - 13 March 2026
-
RC1 - 17 April 2026
-
GA - 15 May 2026
-
OSS Support until: June 2027
-
End of Life: June 2028