Introduction While developing a Spring Boot application is rather
easy, tuning the performance of a Spring Boot application is a
more challenging task, as, not only it requires you to understand
how the Spring framework works behind the scenes, but you have to
know what is the best way to use the underlying data access
framework, like Hibernate for instance. In a previous article, I
showed you how easily to optimize the performance of the
Petclinic demo application. However, by default, the Petclinic
Spring Boot application uses the in-memory HSQLDB database,
which... Read More
The post Spring Boot performance tuning appeared first on
Vlad
Mihalcea.