OGNL access issue for private fields in package scope abstract class

2019-09-26 Thread Thorsten Kunz
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

How to build an outgoing tcp connection gateway that consumes messages?

2012-12-14 Thread Thorsten Kunz
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

Re: How to build an outgoing tcp connection gateway that consumes messages?

2012-12-16 Thread Thorsten Kunz
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

Spring Boot graceful shutdown issue

2017-03-16 Thread Thorsten Kunz
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