Kategorie: Spring 6
-
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…
-
Spring 6: Declarative HTTP Client Interfaces
One of the most common developer tasks in today’s day to day business is writing http clients to query data from REST web services. Traditionally, this is done with the Spring Framework by using either the RestTemplate or the reactive WebClient to call the http methods of a service and transform the result into a…