[
https://issues.apache.org/jira/browse/CAMEL-12646?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16541574#comment-16541574
]
Claus Ibsen commented on CAMEL-12646:
-------------------------------------
And these are the options in the spring-configuration-metadata.json file
{code:java}
"properties": [
{
"sourceType":
"org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
"name": "camel.component.jdbc.customizer.enabled",
"type": "java.lang.Boolean"
},
{
"sourceType":
"org.apache.camel.component.jdbc.springboot.JdbcComponentConfiguration",
"defaultValue": true,
"name": "camel.component.jdbc.enabled",
"description": "Enable jdbc component",
"type": "java.lang.Boolean"
},
{
"sourceType":
"org.apache.camel.component.jdbc.springboot.JdbcComponentConfiguration",
"defaultValue": true,
"name": "camel.component.jdbc.resolve-property-placeholders",
"description": "Whether the component should resolve property placeholders
on itself when\n starting. Only properties which are of String type can use
property\n placeholders.",
"type": "java.lang.Boolean"
}
]
{code}
Notice how the dataSource option is missing.
> camel-spring-boot - Auto configuration of complex types should be more
> tooling friendly
> ---------------------------------------------------------------------------------------
>
> Key: CAMEL-12646
> URL: https://issues.apache.org/jira/browse/CAMEL-12646
> Project: Camel
> Issue Type: Improvement
> Components: camel-spring-boot-starters, tooling
> Reporter: Claus Ibsen
> Assignee: Claus Ibsen
> Priority: Major
> Fix For: 2.23.0
>
>
> If you have complex types like javax.sql.DataSource and wants to allow to
> configure this via spring boot autoconfiguration in application.properties -
> then the generated spring boot classes with all the options will use
> getter/setter of types javax.sql.DataSource. That seems correct, but the
> spring-boot tooling itself (that generates additional json file) will skip
> those as it only support primitives and string types.
> So we may need to fool, and generate the getter/setter as String type as you
> use it for configuring it as a bean reference by id anyway, eg
> camel.component.jdbc.data-source = #myDataSource
> We can add in the javadoc that the type is javax.sql.DataSource.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)