/
Create Profiles
Create Profiles
IntegrationManager takes advantage of Spring Boot Profiles. This enables externalizing of application.properties configuration. Under src/main/resources you can define multiple application-<profile_name>.properties.
Example
application.properties
application-qa.properties
application-staging.properties
application-production.properties
...
Each file can contain different values for standard application properties:
url=https://qa.pricefx.eu/pricefx
partition=home24
username=qa_user
password=qa_password
When no profile is activated, application.properties is used by default.
If you do not want to use the default profile configuration application.properties, you can specify the profile configuration via the Spring parameters:
-Dspring.profiles.active=qa
IntegrationManager version 5.8.0