Kategorie: Uncategorized

  • Spring Boot 4 — What’s New and Why It Matters

    Spring Boot 4 marks a significant step forward in the Spring ecosystem, introducing performance boosts, fresh developer-experience improvements, and updated integration capabilities across the entire stack. This release builds on the foundations of Spring Framework 7 and brings the platform closer to the future of cloud-native, reactive, and AI-assisted development. Below is a clear overview…

  • Spring Boot 3.1: Docker-Compose Integration

    With the release of Spring Boot 3.1, the Spring team introduced a neat support to start all required containers for your application by a single Docker-Compose script that can be checked in with your application. Docker-Compose is a technology that can start multiple Docker containers with a given set of parameters by one single command…

  • Spring Boot 3.2: The new JdbcClient API

    Spring Boot 3.2 is now GA and we got another nice way to call relational databases by JDBC: The JdbcClient. Historically, the Spring framework used the JdbcTemplate class to access relational databases through SQL statements. The JdbcTemplate has a large number of (overloaded) methods that cover almost any case to execute an SQL statement. However,…