• Spring Framework

    Spring Profiles

    Profiles in the Spring framework give you the ability to change application configurations based on the environment that the application is deployed to and is valuable in multi-environment deployments. Usually an application has…

  • Spring Framework

    Spring auto-configuration

    What is auto-configuration? Auto-configuration is a key feature of Springboot that contributes to rapid development of applications by eliminating the need to pre-configure resources or properties required by the application in runtime. @EnableAutoConfiguration…