Spring Data 2025.1.0-M4 released
On behalf of the team and everyone who has contributed, I am pleased to announce the fourth milestone for the next Spring Data generation. This milestone continues delivering new features and refinements.
Ahead-of-Time Optimization for Repositories
When applying AOT optimizations through Spring Boot's build plugin, then AOT-generated Repositories are now enabled by default: You no longer need to set the spring.aot.repositories.enabled
property.
Additionally, you can disable AOT repository generation entirely or individually by setting either spring.aot.jpa.repositories.enabled=false
or spring.aot.mongodb.repositories.enabled=false
…
A Bootiful Podcast: Spring legends Tasha Isenberg and Jason Konicki
Hi, Spring fans! In this edition, I had the pleasure of chatting with the brilliant Arjen Poutsma, our go-to API oracle.
If you’re curious about his fantastic insights, thoughts, and consultancy services, be sure to check out poutsma-principles.com
Spring Framework 7.0.0-M7 available now
On behalf of the team and everyone who has contributed, I am pleased to announce a new milestone for the next Spring Framework generation. We have compiled all the upgrade information, new features and deprecations on the Spring Framework 7.0 release notes preview page.
Resilience Features
After the introduction of the org.springframework.core.retry
package in 7.0.0-M6, effectively moving features from the former "spring-retry" project,
we recently introduced dedicated @Retryable
, @ConcurrencyLimit
and @EnableResilientMethods
annotations.
This is now documented in the "Resilience Features" section of the reference documentation…
Spring Framework 6.2.9 Available Now
On behalf of the team and everyone who has contributed, I am pleased to announce that Spring Framework 6.2.9
is available now.
Spring Framework 6.2.9
ships with 28 fixes and documentation improvements. This version will be shipped next week with Spring Boot 3.4.8
and 3.5.4
.
This Week in Spring - July 15th, 2025
Hi, Spring fans! It's already the 15th of July! We're closer to 2026 than we are to 2024. And time's sure flying. Like I will, tomorrow. I'll be flying to Denver for the amazing UBERCONF software show! I'll be doing a workshop and two talks, and if you're there, I hope you'll come say "hi"!
Let's get into this week's roundup, because it's a doozy!
- this is technically from more than a week ago, but Spring gRPC 0.9.0 is available now!
- In last week's A Bootiful Podcast, I talked to Spring team alumnus and API oracle Arjen Poutsma
- Spring Cloud 2024.0.2 (aka Moorgate) has been released
- An interesting article with a bold claim: Cron Jobs Are Dead: How I Used Temporal to Future-Proof My Spring Boot App. I haven't played too much with Temporal, but it looks like its solving an interesting problem - workflow orchestration - in an interesting way, and offers a good Spring Boot integration.
- I did a talk for Jetbrains with IntelliJ IDEA lead Aleksey Stukalov looking at a …
Spring Cloud 2024.0.2 (aka Moorgate) Has Been Released
On behalf of the community, I am pleased to announce that the General Availability (RELEASE) of the Spring Cloud 2024.0.2 (aka Moorgate) Release Train is available today. The release can be found in Maven Central. You can check out the 2024.0 release notes for more information.
Changes in the 2024.0.2 Release Train
This is primarily a bugfix and dependency bump release compatible with the Spring Boot 3.4.x generation.
The following modules were updated as part of 2024.0.2:
Module | Version | Issues |
---|---|---|
Spring Cloud Kubernetes | 3.2.2 | (issues) |
Spring Cloud Function | 4.2.3 | (issues) |
Spring Cloud Zookeeper | 4.2.2 | (issues) |
Spring Cloud Commons | 4.2.2 | (issues) |
Spring Cloud Task | 3.2.2 | (issues) |
Spring Cloud Vault | 4.2.2 | (issues) |
Spring Cloud Openfeign | 4.2.2 | (issues) |
Spring Cloud Circuitbreaker | 3.2.2 | (issues) |
Spring Cloud Netflix | 4.2.2 | (issues) |
Spring Cloud Starter Build | 2024.0.2 | (issues) |
Spring Cloud Stream | 4.2.2 | (issues) |
Spring Cloud Gateway | 4.2.4 | (issues) |
Spring Cloud Config | 4.2.3 | (issues) |
Spring Cloud Consul | 4.2.2 | (issues) |
Spring Cloud Build | 4.2.2 | (issues) |
Spring Cloud Contract | 4.2.2 | (issues) | …
A Bootiful Podcast: API oracle Arjen Poutsma
Hi, Spring fans! In this edition, I had the pleasure of chatting with the brilliant Arjen Poutsma, our go-to API oracle.
If you’re curious about his fantastic insights, thoughts, and consultancy services, be sure to check out poutsma-principles.com
This Week in Spring - July 8th, 2025
Hi, Spring fans! Welcome to another installment of This Week in Spring! I write this having spent a wonderful week in paradise (Bora Bora, French Polynesia, to be precise) with my partner Tam Mie. We were so very sad to have to say goodbye.
But that means I'm officially back at my desk, with nary a manta ray to be found anywhere. Sigh. That's okay, though, as there are a ton of amazing things to read and catch up on - so let's dive into this week's roundup (if not the pearly blue, crystal-clear oceans of the South Pacific)!
- Good news, everybody! Spring gRPC 0.9.0 is available now!
- In last week's installment of A Bootiful Podcast, I talked to the legendary Dr. Heinz Kabutz.
- Andres Almiray did a follow-up blog to our post introducing Spring AI and Oracle DB as a vector store back in May—this one on connecting Spring AI to Oracle Autonomous DB.
- A nice blog post looking at what's new in Spring Boot 4.0.
- Come watch AWS developer advocate and industry legend James Ward, and yours truly, as we explore AI with Spring AI and Amazon Bedrock.
- JUnit 6.0.0.M1 is available for, erm, testing!
- Spring Modulith lead Oliver Drotbohm looks at the overhauled event publication registry support in Spring Modulith 2.0…
Spring gRPC 0.9.0 available now
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring gRPC 0.9.0
has been released and is now available from Maven Central. We are still planning to have a 1.0.0 release around the same time as Spring Boot 4.0.0.
The main changes in this release are
- Upgrade to Spring Boot 3.5.
StubFactory
contract changes: the "supports" method is now a static method (it is called before an instance is created).- Removed
GrpcClientFactoryCustomizer
in favour ofGrpcChannelBuilderCustomizer
. - Added ability to filter interceptors in in-process gRPC clients.
- Added ability to filter global interceptors and service definitions - easy to do for
InProcessGrpcServer
and possible to do forNettyGrpcServer
by registering a customizer. …