Hi all,
I was just debugging an issue that I am not sure if it is a bug or not.
Lets assume the following to classes:
package test.dto;
abstract class A {
private String privA;
public String getPrivA() {
return privA;
}
}
package test.dto;
public class B extends A {
private String p
Hi all,
I have a problem that I need to solve and I would like to get a few ideas
about the best options on how to do it since I am new to Camel.
So I do need to implement a gateway to consume XML based messages from a
server. Initially I thought that Netty Consumer mode sounds like it would
matc
etty.
> This would allow Camel to acts as a client and connect to a remote
> server, and receive messages coming in to a route.
>
> Though we haven't had the time yet to implement such functionality.
>
>
> On Fri, Dec 14, 2012 at 3:34 PM, Thorsten Kunz wrote:
> > Hi
I have a Spring Boot application that is using JDBC auto-configuration to
start up a pooled datasource to be used by a few camel components. Seems to
work quite nice.
The issue is now that when I shutdown the app (press ctrl+c on the console)
Spring Boot is shutting down the JDBC pool before the C