[
https://issues.apache.org/jira/browse/CAMEL-20148?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17791629#comment-17791629
]
Gardella Juan Pablo commented on CAMEL-20148:
---------------------------------------------
I found an issue yesterday related to the upgrade. I have this on properties
file:
{{camel.springboot.routes-include-pattern=classpath:camel/*{*}/{*}.xml}}
and the application is unable to find the routes. The workaround is use CLASSIC
loader implementation:
{code:xml}
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<layout>ZIP</layout>
<loaderImplementation>CLASSIC</loaderImplementation>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
{code}
> camel-spring-boot - Upgrade to 3.2
> ----------------------------------
>
> Key: CAMEL-20148
> URL: https://issues.apache.org/jira/browse/CAMEL-20148
> Project: Camel
> Issue Type: Dependency upgrade
> Components: camel-spring-boot
> Reporter: Claus Ibsen
> Assignee: Federico Mariani
> Priority: Major
> Fix For: 4.3.0
>
>
> Also see CAMEL-19631
--
This message was sent by Atlassian Jira
(v8.20.10#820010)