Simplified Event Externalization with Spring Modulith

Engineering | Oliver Drotbohm | September 22, 2023 | ...

Transactional service methods are a common pattern in Spring applications. These methods trigger a state transition important to the business. This usually involves a core domain abstraction, such as an aggregate and its corresponding repository. A stereotypical example of such an arrangement might look like this:

@Service
@RequiredArgsConstructor
class OrderManagement {

  private final OrderRepository orders;

  @Transactional
  Order complete(Order order) {
     return orders.save(order.complete());
  }
}

As state transitions like these might be interesting to third parties, we might want…

Spring Modulith 1.1 M1 and 1.0.1 released

Releases | Oliver Drotbohm | September 21, 2023 | ...

On behalf of the community, I am happy to announce the release of Spring Modulith 1.1 M1 and 1.0.1. While the latter primarily ships minor bug fixes, the former packages quite a few new features, such as:

  • Support to externalize application events into Kafka, AMQP and JMS GH-248
  • APIs to access completed and incomplete event publications GH-294
  • Support for Neo4j as persistence store to back the Event Publication Registry GH-301

We will have a blog post elaborating on the former coming soon. Feel free to check out the full change log and revamped reference documentation in the meantime. Thanks…

Spring Boot 3.2.0-M3 available now

Releases | Moritz Halbritter | September 21, 2023 | ...

On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.2.0-M3 has been released and is now available from https://repo.spring.io/milestone.

This release includes 97 enhancements, documentation improvements, dependency upgrades, and bug fixes. Notable new features include:

  • Support for Jetty 12
  • Support for Spring for Apache Pulsar
  • Docker Compose Support for Neo4j

Please see the release notes for more details and upgrade instructions.

Thanks to all those who have contributed with issue reports and pull requests.

How can you help?

If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot tag or chat with the community on Gitter

Spring Boot 3.1.4 available now

Releases | Moritz Halbritter | September 21, 2023 | ...

On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.1.4 has been released and is now available from Maven Central.

This release includes 50 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.

How can you help?

If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot tag or chat with the community on Gitter.

Project Page | GitHub | Issues | Documentation | Stack Overflow |

Spring Boot 3.0.11 available now

Releases | Moritz Halbritter | September 21, 2023 | ...

On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.0.11 has been released and is now available from Maven Central.

This release includes 40 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.

How can you help?

If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot tag or chat with the community on Gitter.

Project Page | GitHub | Issues | Documentation | Stack Overflow |

Spring Boot 2.7.16 available now

Releases | Moritz Halbritter | September 21, 2023 | ...

On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 2.7.16 has been released and is now available from Maven Central.

This release includes 24 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.

How can you help?

If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot tag or chat with the community on Gitter.

Project Page | GitHub | Issues | Documentation | Stack Overflow |

Spring Integration 6.2.0 Milestone 3 Available

Releases | Artem Bilan | September 20, 2023 | ...

Dear Spring community,

On behalf of Spring Integration team, it is my pleasure to announce 6.2.0-M3 version which is available from Spring Milestone repository.

In addition, bug fixes version 6.1.3 has been released as well into Maven Central.

Since the previously announced Milestone 1, these changes have made it into a new Spring Integration generation:

  • The documentation migrated to Antora site generator and hosted alongside with other migrated Spring projects here

  • The project build lifecycle is now connected to Gradle Enterprise, so every one contributing can now benefit from remote shared cache for Gradle tasks

  • The LockRegistry interface provides a template-like executeLocked() API:

Spring Cloud Dataflow 2.11.0 Released

Releases | Chris Bono | September 21, 2023 | ...

On behalf of the team and everyone who has contributed, I’m happy to announce that Spring Cloud Dataflow 2.11.0 has been released and is now available from Maven Central.

Notable Changes in 2.11.0

Spring Boot 3 Applications

  • Adds support for Spring Boot 3.x based stream applications.
  • Adds support for Spring Cloud Task 3.x based task applications.
  • Adds support for Spring Batch 5.x based batch applications.

More info can be found in the Boot 3 Appendix.

Library Updates

  • Spring Boot 2.7.15
  • Spring Cloud 2021.0.8

Kubernetes Update

  • The long-awaited update of Kubernetes cronjobs from batch/v1beta -> batch/v1 which allows users to run Kubernetes >= 1.25.0.

Spring Batch 5.1.0-M3 available now!

Releases | Mahmoud Ben Hassine | September 20, 2023 | ...

On behalf of the team and everyone who has contributed, I am pleased to announce that Spring Batch 5.1.0-M3 is now available from our milestone repository.

This new milestone introduces the following main features:

  • Dependencies upgrade
  • New item reader and writer for Redis
  • Automatic configuration of JobRegistryBeanPostProcessor
  • Ability to start a job flow with a decision
  • Ability to provide a custom JobKeyGenerator
  • New documentation based on Antora

For the complete list of changes, please check the release notes.

Dependencies upgrade

This milestone release upgrades Spring dependencies to the…

Get the Spring newsletter

Thank you for your interest. Someone will get back to you shortly.

Get ahead

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

Learn more

Get support

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

Learn more

Upcoming events

Check out all the upcoming events in the Spring community.

View all