Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davsclaus/a7869bb09e7694e35a499be63ececa46 to your computer and use it in GitHub Desktop.
Save davsclaus/a7869bb09e7694e35a499be63ececa46 to your computer and use it in GitHub Desktop.
# 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