A Bootiful Podcast: Micrometer lead Tommy Ludwig
Hi, Spring fans! In this installment, Josh Long talks to Micrometer lead Tommy Ludwig, recorded from beautiful Barcelona, Spain during the fabulous Spring I/O event!
Hi, Spring fans! In this installment, Josh Long talks to Micrometer lead Tommy Ludwig, recorded from beautiful Barcelona, Spain during the fabulous Spring I/O event!
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 2.7.13
has been released and is now available from Maven Central.
This release includes 26 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.
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 | …
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.0.8
has been released and is now available from Maven Central.
This release includes 51 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.
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 | …
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.1.1
has been released and is now available from Maven Central.
This release includes 89 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.
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 | …
Docker Compose support in Spring Boot 3.1 builds on top of the
ConnectionDetails
abstraction, which we've featured in a separate blog post. If you haven't already read it, please do so before reading this post.
Docker Compose "is a tool for defining and running multi-container Docker applications".
A Docker Compose configuration file, usually named docker-compose.yaml
or compose.yaml
, allows you to define services.
Such services must have a name and a Docker image.
Optionally you can also define environment variables, exposed ports, labels, how services relate to one another, and so on.
Here…
Hi, Spring fans! Welcome to another installment of This Week in Spring! I'm in Sydney, Australia, talking to customers, koalas, kangaroos, and whoever else will listen! I'll be doing a live presentation, tonight at the Microsoft Reactor here in Sydney. Register now and come join me!
As usual, we've got a ton of stuff to get through so let's dive right into it!
ConnectionDetails
abstractionI'm pleased to announce that the Spring for GraphQL 1.1.5 and 1.2.1 maintenance versions are now available on Maven Central.
Spring for GraphQL 1.1.5 includes 11 fixes and documentation improvements. This version will be shipped with Spring Boot 3.0.8, to be released this Thursday.
Spring for GraphQL 1.2.1 includes 10 fixes and documentation improvements. This version will be shipped with Spring Boot 3.1.1, to be released this Thursday as well.
If you have general questions, please ask on stackoverflow.com using the spring-graphql
tag.
Project Page | GitHub | Issues | Documentation | Stack…
On behalf of the team and everyone who has contributed, it is my pleasure to announce the general availability of Spring Authorization Server 1.1.1, 1.0.3 and 0.4.3.
See the 1.1.1, 1.0.3 and 0.4.3 release notes for complete details.
To get started using Spring Authorization Server, see the Getting Started chapter of the reference documentation and the samples to become familiar with setup and configuration.
On behalf of the team and everyone who has contributed, I am pleased to announce that Spring Security 6.1.1, 6.0.4, 5.8.4, 5.7.9, and 5.6.11 are available now. The releases are mostly composed of bug fixes, dependency upgrades, and documentation improvements.
To learn more, please visit the 6.1.1, 6.0.4, 5.8.4, 5.7.9, and 5.6.11 release summaries.
If you've used Spring Boot for a while, you're probably familiar with setting up connection details using properties. For example, you may have used spring.datasource.url
to configure a JDBC connection. In Spring Boot 3.1 this continues to work as you'd expect, but we've changed things a bit under the hood to decouple the auto-configurations from the properties.
There's now a new ConnectionDetails
abstraction.
This interface models the concept of a connection to a remote service.
If you take a look at this interface, you'll see that it's empty.
It serves as a tagging interface, and is extended by multiple other interfaces which model the connection to a concrete remote service, e.g. RedisConnectionDetails
for connections to a Redis server or JdbcConnectionDetails
…