Autoloading entities in Spring Shell commands
Posted on March 25, 2022During an assignment for my lecture Software-Development using Enterprise Technologies we had to develop an auctioning system using Spring Boot. The interaction with this system had to be possible…
Read full postCommandLineRunners in Spring Shell
Posted on March 25, 2022Spring Shell uses a CommandLineRunner blocking the main thread in order to run the interactive communication with the user. Other CommandLineRunners without any defined @Order or a lower priority, will not be executed before...
Read full postHow to eager load files with Rails
Posted on March 04, 2022Eager loading increases performance and thus is useful in production environments. But this conditional behaviour can also lead to works-on-my-machine moments.
Read full post