Schlagwort: spring 6

  • Spring Boot 3.2: The new RestClient API

    Spring Boot 3.2 is available on the Spring Initializr and we got a brand new way to call http endpoints with it: The new RestClient. You might ask yourself why the Spring team released another way to make http calls in addition to the three ways we already have in our toolbox. Let’s have a…

  • Spring Boot 3: Native Images with GraalVM

    Spring Boot 3 finally integrated the Spring Native project into the core framework, giving you the option to compile your application to a native executable. The Spring team also worked hard on making most available Spring-Boot starters compatible with the new native compile option. This means that you can now compile your application natively without…

  • Spring Boot 3: Observability with Micrometer

    With Spring 6 and Spring Boot 3 released, we got some nice additions to the Spring Actuator module that make sure that monitoring our application will be fully compatible with Micrometer. Micrometer is a facade API that let’s us specify metrics and other data we want to observe in our application and makes sure that…