Spring Boot displays a “whitelabel” error page by default as part of auto-configuration. In this tutorial you will learn how to create a custom error page using different view resolvers.
How to reload my Spring Boot changes without restarting the server?
During development, you often need to change the code often and restart the server for those code changes to take effect. Spring Boot provides developer tools (the spring-boot-devtools module) that include support for quick application restarts whenever the application classpath content changes.When you include the spring-boot-devtools module during development, the caching of the view templates … Read more