Closed phibo22 closed 1 month ago
It's more likely an issue in camel?
It's more likely an issue in camel?
Yes, it's because CamelBaseBulkConverterLoader
cannot deal with the primitive byte
. I have it fixed locally.
Can you backport to 4.4.x branch
Bug description
Property binding for byte properties does throw
org.apache.camel.NoTypeConversionAvailableException: No type converter available to convert from type: java.lang.String to the required type: byte
How to reproduce:
quarkus create app org.acme:getting-started \ --extension='rest,camel-quarkus-smpp'
Add property
camel.component.smpp.data-coding=0
to application.propertiesTry to start the application using
quarkus dev