Created
May 24, 2019 10:02
-
-
Save davsclaus/a7869bb09e7694e35a499be63ececa46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to configure camel main | |
# here you can configure options on camel main (see MainConfigurationProperties class) | |
camel.main.name = MyCoolCamel | |
camel.main.jmx-enabled = false | |
# you can also configure camel context directly | |
# camel.context.shutdown-strategy.shutdown-now-on-timeout = false | |
# load additional property placeholders from this folder | |
camel.main.file-configurations=src/main/data/*.properties | |
# to configure the camel quartz component | |
# here we can configure the options on the component level (and we can use dash-naming-style) | |
camel.component.quartz2.start-delayed-seconds = 3 | |
# you can configure whether OS environment should override (=2 which is default) or as fallback (=1) | |
### camel.component.properties.environment-variable-mode=1 | |
# properties used in the route | |
myCron = 0/2 * * * * ? | |
# application properties | |
hi = Hello | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment