OpenLegacy LowCode/NoCode API Properties
OpenLegacy low-code/no-cose APIs are Java Spring Boot 3 applications.
If a user would like to override any spring supported YAML property, he could set it as an environment variable or in the lowcode projects application YAML.
Spring Boot provides a way to override configuration properties defined in application.yml (or application.properties) using environment variables. The naming convention follows a specific pattern to ensure that environment variables are correctly mapped to the corresponding properties in the YAML file.
Here are the key rules:
- Hierarchical Structure: Use underscores (_) to separate hierarchical properties.
- Uppercase Letters: Use uppercase letters for the environment variable names.
- Dots to Underscores: Replace dots (.) in property names with underscores (_).
You can find all available properties in here:
https://docs.spring.io/spring-boot/appendix/application-properties/index.html
Server properties:
Updated 16 days ago