Resources in Spring Boot Appliacation

Viewed 29

I have developed a Spring Boot Application and I am looking for a comprehensive list of all the resources that needs to be cleaned or taken extra care of before killing the app. To name a few, the Database Connection pool needs to be cleaned. What are the other resources that I should take care of to graceful shutdown the app? Thanks

1 Answers

You do not need to explicitly clean any of the resources, Spring boot is intelligent enough to clean any resources that it was using.

Related