Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the team, I’m pleased to announce the availability of the Spring Data 2021.1.0-M1
milestone release.
The release is built on top of Spring Framework 5.3.9
. For your convenience, you can consume this release through Spring Boot 2.6.0-M1
, which our team mates on the Boot team will release in about a week.
The 2021.1
release train ships a set of features and dependency upgrades.
The most important changes are:
java.time
types across multiple databases._id
or a combination of fields to link to another document.The sample below shows the reference to a collection of Account
documents through their _id
in Java code and how it is represented in MongoDB:
java @Document class Person { @Id String id; @DocumentReference List<Account> accounts; }
json { "_id" : …, "accounts" : [ "6509b9e" … ] }
See the wiki page of the Spring Data 2021.1
release train for further details.
We're working towards a second milestone in August and a third one in September. We plan for a GA release in November. We're looking forward to your feedback!
To round things off, here are the links to the artifacts, changelogs, and documentation: