Spring Boot Profiles Tutorial

1 min read
Date: 2020-07-27
This tutorial demonstrates how to use Spring Boot profiles to manage environment-specific configurations (like DEV, QA, PROD). It uses application.properties
to activate a profile (e.g., "QA") which loads corresponding YAML files (e.g., application-qa.yml
) containing environment-specific settings. The example shows creating these files and a controller to access profile-dependent values. The tutorial utilizes Maven, Eclipse, and JDK 8. By changing spring.profiles.active
, different profiles can be activated at runtime.
Read more: https://examples.javacodegeeks.com/spring-boot-profiles-tutorial/
0
Subscribe to my newsletter
Read articles from Yatin B. directly inside your inbox. Subscribe to the newsletter, and don't miss out.
spring boot profilesjava configurationapplication.propertiesEnvironment variablesmavenspring-bootYAML
Written by
