Class CamelSqlConfig
- java.lang.Object
-
- org.apache.camel.quarkus.component.sql.CamelSqlConfig
-
@ConfigRoot(name="camel.sql", phase=BUILD_AND_RUN_TIME_FIXED) public class CamelSqlConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Optional<List<String>>scriptFilesA comma separated list of paths to script files referenced by SQL endpoints.
-
Constructor Summary
Constructors Constructor Description CamelSqlConfig()
-
-
-
Field Detail
-
scriptFiles
@ConfigItem public Optional<List<String>> scriptFiles
A comma separated list of paths to script files referenced by SQL endpoints. Script files that only need to be accessible from the classpath should be specified on this property. Paths can either be schemeless (E.g sql/my-script.sql) or be prefixed with the classpath: URI scheme (E.g classpath:sql/my-script.sql). Other URI schemes are not supported.
-
-