---
title: "Spring Data 2026.0.0-RC1 enters release candidate phase"
source_name: "Spring Blog"
original_url: "https://spring.io/blog/2026/04/17/spring-data-2026-0-0-goes-RC"
canonical_url: "https://www.traeai.com/articles/5503c5b0-7704-4297-a4ab-0b58a7262c82"
content_type: "article"
language: "英文"
score: 7.5
tags: ["Spring Data","Java","数据库","Redis","ORM"]
published_at: "2026-04-17T00:00:00+00:00"
created_at: "2026-04-17T19:14:09.416853+00:00"
---

# Spring Data 2026.0.0-RC1 enters release candidate phase

Canonical URL: https://www.traeai.com/articles/5503c5b0-7704-4297-a4ab-0b58a7262c82
Original source: https://spring.io/blog/2026/04/17/spring-data-2026-0-0-goes-RC

## Summary

Spring Data 2026.0.0-RC1 发布，新增关系型数据库 Upsert、Redis 消息模板及缓存批量重置优化，为 Spring Boot 4.1 做准备。

## Key Takeaways

- Spring Data Relational 新增基于 MERGE 或 ON CONFLICT 的 Upsert 支持
- 引入 RedisMessageSendingTemplate，与注解式 Pub/Sub 使用统一消息转换器
- RedisCache 支持通过 FLUSHDB 一次性重置多个缓存，提升性能

## Content

Title: Spring Data 2026.0.0-RC1 enters release candidate phase

URL Source: http://spring.io/blog/2026/04/17/spring-data-2026-0-0-goes-RC

Markdown Content:
# Spring Data 2026.0.0-RC1 enters release candidate phase

[Skip to main content](http://spring.io/blog/2026/04/17/spring-data-2026-0-0-goes-RC#main)

[](http://spring.io/ "Home")

Why Spring
*   [Overview](http://spring.io/why-spring)
*   Trending 
*   [Generative AI](http://spring.io/ai)
*   [Cloud](http://spring.io/cloud)
*   Architecture Patterns 
*   [Microservices](http://spring.io/microservices)
*   [Reactive](http://spring.io/reactive)
*   [Event Driven](http://spring.io/event-driven)
*   Application Types 
*   [Web Applications](http://spring.io/web-applications)
*   [Serverless](http://spring.io/serverless)
*   [Batch](http://spring.io/batch)

Learn
*   Getting Started 
*   [Quickstart](http://spring.io/quickstart)
*   [Guides](http://spring.io/guides)
*   Academy 
*   [Courses](https://spring.academy/courses)
*   [Get Certified](https://spring.academy/learning-path)

Projects
*   [Overview](http://spring.io/projects)
*   Projects 
*   [Spring Boot](http://spring.io/projects/spring-boot)
*   [Spring Framework](http://spring.io/projects/spring-framework)
*   [Spring Cloud](http://spring.io/projects/spring-cloud)
*   [Spring AI](http://spring.io/projects/spring-ai)
*   [Spring Data](http://spring.io/projects/spring-data)
*   [Spring Integration](http://spring.io/projects/spring-integration)
*   [Spring Batch](http://spring.io/projects/spring-batch)
*   [Spring Security](http://spring.io/projects/spring-security)
*   Foundational Projects 
*   [Micrometer](https://micrometer.io/)
*   [Reactor](https://projectreactor.io/)
*   Development Tools 
*   [Spring Tools](http://spring.io/tools)
*   [Spring Initializr](https://start.spring.io/)

Resources
*   [Blog](http://spring.io/blog)
*   [Release Calendar](http://spring.io/projects#release-calendar)
*   [Version Mappings](http://spring.io/projects/generations)
*   [Release Highlights](http://spring.io/projects/release-highlights)
*   [Security Advisories](http://spring.io/security)
*   GitHub Orgs 
*   [Spring Projects](https://github.com/spring-projects)
*   [Spring Cloud](https://github.com/spring-cloud)

Community
*   [Overview](http://spring.io/community)
*   [Events](http://spring.io/events)
*   [Authors](http://spring.io/authors)

Enterprise
*   [Overview](https://enterprise.spring.io/)
*   [Long-term Support](https://enterprise.spring.io/lts-releases)
*   [Automated Upgrades](https://enterprise.spring.io/spring-application-advisor)
*   [Governance and Compliance](https://enterprise.spring.io/enterprise-extensions)
*   [Modern App Development](https://enterprise.spring.io/enterprise-components)

- [x] light 

[](http://spring.io/ "Logo")

# [Spring Blog](http://spring.io/blog)

RSS feeds

[All Posts](http://spring.io/blog.atom)

[Engineering](http://spring.io/blog/category/engineering.atom)

[Releases](http://spring.io/blog/category/releases.atom)

[News & Events](http://spring.io/blog/category/news.atom)

# Spring Data 2026.0.0-RC1 enters release candidate phase

[Releases](http://spring.io/blog/category/releases) | [Mark Paluch](http://spring.io/authors/mp911de) | April 17, 2026 | 1 min read | [0 Comments](http://spring.io/blog/2026/04/17/spring-data-2026-0-0-goes-RC#disqus_thread)

It is my pleasure to announce that a feature-complete Spring Data `2026.0` release candidate is available now! This release is in preparation for the Spring Boot 4.1 release candidate next week. We expect final releases for general availability in May.

This RC ships a couple of New and Noteworthy changes:

*   Upsert functionality for Spring Data Relational using `MERGE` or `INSERT … ON CONFLICT … DO UPDATE` syntax available on the Template API
*   A `RedisMessageSendingTemplate` complementing annotation-driven Redis Pub/Sub listeners with a consistent usage of the same underlying `MessageConverter`s.
*   `RedisCache.resetCaches()` optimization allowing to reset multiple caches in a single call through `FLUSHDB` if Redis is used exclusively for caching.

You can find the consolidated list of changes at the [release notes](https://github.com/spring-projects/spring-data-commons/wiki/Spring-Data-2026.0-Release-Notes) for the `2026.0` release train.

To round things off, here are the links to the documentation and individual change logs:

*   Spring Data Commons `4.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/commons/reference/4.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/commons/reference/4.1/) - [Changelog](https://github.com/spring-projects/spring-data-commons/releases/tag/4.1.0-RC1)
*   Spring Data JPA `4.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/jpa/reference/4.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/jpa/reference/4.1/) - [Changelog](https://github.com/spring-projects/spring-data-jpa/releases/tag/4.1.0-RC1)
*   Spring Data MongoDB `5.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/mongodb/reference/5.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/mongodb/reference/5.1/) - [Changelog](https://github.com/spring-projects/spring-data-mongodb/releases/tag/5.1.0-RC1)
*   Spring Data Neo4j `8.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/neo4j/reference/8.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/neo4j/reference/8.1/) - [Changelog](https://github.com/spring-projects/spring-data-neo4j/releases/tag/8.1.0-RC1)
*   Spring Data for Apache Cassandra `5.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/cassandra/reference/5.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/cassandra/reference/5.1/) - [Changelog](https://github.com/spring-projects/spring-data-cassandra/releases/tag/5.1.0-RC1)
*   Spring Data KeyValue `4.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/keyvalue/reference/4.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/keyvalue/reference/4.1/) - [Changelog](https://github.com/spring-projects/spring-data-keyvalue/releases/tag/4.1.0-RC1)
*   Spring Data LDAP `4.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/ldap/reference/4.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/ldap/reference/4.1/) - [Changelog](https://github.com/spring-projects/spring-data-ldap/releases/tag/4.1.0-RC1)
*   Spring Data REST `5.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/rest/reference/5.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/rest/reference/5.1/) - [Changelog](https://github.com/spring-projects/spring-data-rest/releases/tag/5.1.0-RC1)
*   Spring Data Redis `4.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/redis/reference/4.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/redis/reference/4.1/) - [Changelog](https://github.com/spring-projects/spring-data-redis/releases/tag/4.1.0-RC1)
*   Spring Data Elasticsearch `6.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/elasticsearch/reference/6.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/elasticsearch/reference/6.1/) - [Changelog](https://github.com/spring-projects/spring-data-elasticsearch/releases/tag/6.1.0-RC1)
*   Spring Data Couchbase `6.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/couchbase/reference/6.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/couchbase/reference/6.1/) - [Changelog](https://github.com/spring-projects/spring-data-couchbase/releases/tag/6.1.0-RC1)
*   Spring Data Relational `4.1 RC1` - [Javadoc](https://docs.spring.io/spring-data/relational/reference/4.1/api/java/) - [Documentation](https://docs.spring.io/spring-data/relational/reference/4.1/) - [Changelog](https://github.com/spring-projects/spring-data-relational/releases/tag/4.1.0-RC1)

## Get the Spring newsletter

Stay connected with the Spring newsletter

[Subscribe](https://go-vmware.broadcom.com/tnz-spring-newsletter-subscribe)

![Image 1](http://spring.io/img/extra/footer.svg)

## Get ahead

VMware offers training and certification to turbo-charge your progress.

[Learn more](https://spring.academy/)
## Get support

Tanzu Spring offers support and binaries for OpenJDK™, Spring, and Apache Tomcat® in one simple subscription.

[Learn more](http://spring.io/support)
## Upcoming events

Check out all the upcoming events in the Spring community.

[View all](http://spring.io/events)

[Why Spring](http://spring.io/why-spring)

[Generative AI](http://spring.io/ai)

[Microservices](http://spring.io/microservices)

[Reactive](http://spring.io/reactive)

[Event Driven](http://spring.io/event-driven)

[Cloud](http://spring.io/cloud)

[Web Applications](http://spring.io/web-applications)

[Serverless](http://spring.io/serverless)

[Batch](http://spring.io/batch)

[Learn](http://spring.io/learn)

[Quickstart](http://spring.io/quickstart)

[Guides](http://spring.io/guides)

[Courses](https://spring.academy/courses)

[Get Certified](https://spring.academy/learning-path)

[Projects](http://spring.io/projects)

Resources

[Blog](http://spring.io/blog)

[Release Calendar](http://spring.io/projects#release-calendar)

[Version Mappings](http://spring.io/projects/generations)

[Release Highlights](http://spring.io/projects/release-highlights)

[Security Advisories](http://spring.io/security)

[Community](http://spring.io/community)

[Events](http://spring.io/events)

[Authors](http://spring.io/authors)

[Enterprise](https://enterprise.spring.io/)

[Long-term Support](https://enterprise.spring.io/lts-releases)

[Automated Upgrades](https://enterprise.spring.io/spring-application-advisor)

[Governance and Compliance](https://enterprise.spring.io/enterprise-extensions)

[Modern App Development](https://enterprise.spring.io/enterprise-components)

[Thank You](http://spring.io/thank-you)

Copyright © 2005 - 2026 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries. 

[Terms of Use](https://www.broadcom.com/company/legal/terms-of-use) • [Privacy](https://www.broadcom.com/company/legal/privacy) • [Trademark Guidelines](http://spring.io/trademarks)

Apache®, Apache Tomcat®, Apache Kafka®, Apache Cassandra™, and Apache Geode™ are trademarks or registered trademarks of the Apache Software Foundation in the United States and/or other countries. Java™, Java™ SE, Java™ EE, and OpenJDK™ are trademarks of Oracle and/or its affiliates. Kubernetes® is a registered trademark of the Linux Foundation in the United States and other countries. Linux® is the registered trademark of Linus Torvalds in the United States and other countries. Windows® and Microsoft® Azure are registered trademarks of Microsoft Corporation. “AWS” and “Amazon Web Services” are trademarks or registered trademarks of Amazon.com Inc. or its affiliates. All other trademarks and copyrights are property of their respective owners and are only mentioned for informative purposes. Other names may be trademarks of their respective owners.

[](https://www.youtube.com/user/SpringSourceDev)[](https://github.com/spring-projects)[](https://x.com/springcentral)[](https://bsky.app/profile/spring.io)

[](http://spring.io/blog/2026/04/17/spring-data-2026-0-0-goes-RC#header)

## Cookies

Broadcom and our partners use technology, including cookies to, among other things, operate the site, analyze site usage, view and retain your site interactions, improve your experience and help us advertise. Click “Cookie Settings” to manage your privacy choices. By continuing to use our site, you agree to these data practices as described in our[Cookie Notice](https://www.broadcom.com/company/legal/cookie-policy)

Cookies Settings

![Image 2: Company Logo](https://cdn.cookielaw.org/logos/8153b982-ae11-46a0-b7c2-6e4e3b591d72/8a37f712-8eb0-4967-9ca7-343409702cfa/5228da75-715f-4d1a-9262-2662775eb1ce/Broadcom_Logo_Red-Black_no-tag.png)

## Privacy Preference Center

## Privacy Preference Center

*   ### Your Privacy 
*   ### Strictly Necessary Cookies 
*   ### Functional Cookies 
*   ### Performance Cookies 
*   ### Targeting Cookies 

#### Your Privacy

When you interact with Broadcom as set forth in the Privacy Policy through visiting any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. 

[Cookie Policy](https://www.broadcom.com/company/legal/privacy/cookie-policy)[Privacy Policy](https://www.broadcom.com/company/legal/privacy/policy)

#### Strictly Necessary Cookies

Always Active

These cookies are necessary for the website to function and cannot be switched off in Broadcom’s systems. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms. You can set your browser to block or alert you about these cookies, but some parts of the site will not then work. These cookies do not store any personally identifiable information.

#### Functional Cookies

- [x] Functional Cookies 

These cookies enable the website to provide enhanced functionality and personalization. They may be set by us or by third party providers whose services we have added to our pages. If you do not allow these cookies then some or all of these services may not function properly.

#### Performance Cookies

- [x] Performance Cookies 

These cookies allow Broadcom to count visits and traffic sources so Broadcom can measure and improve the performance of its site. They help Broadcom to know which pages are the most and least popular and see how visitors move around the site. All information these cookies collect is aggregated and therefore anonymous. If you do not allow these cookies Broadcom will not know when you have visited our site and will not be able to monitor its performance.

#### Targeting Cookies

- [x] Targeting Cookies 

These cookies may be set through Broadcom’s site by its advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising.

### Cookie List

Consent Leg.Interest

- [x] checkbox label label

- [x] checkbox label label

- [x] checkbox label label

Clear

*   - [x] checkbox label label 

Apply Cancel

Confirm My Choices

Required Only Allow All

[![Image 3: Powered by Onetrust](https://cdn.cookielaw.org/logos/static/powered_by_logo.svg)](https://www.onetrust.com/products/cookie-consent/)
