Hello, I'm building a web application that uses Spring and is deployed on a Tomcat 8.0 server. In the application, I have successfully integrated Qpid JMS (using Spring JMS) to both send messages (by jmsTemplate) and receive messages (by DefaultMessageListenerContainer).
The issue I'm having is when I shutdown my application, I get several log messages that indicated that some Netty component was not properly shutdown. the log can be found here: https://gist.github.com/chaodhib/503c2c777d8ff3b546d7c2285a5ea1a4 The root cause seems to be the call to NettyTcpTransport.close(). In this method, group.shutdownGracefully() is called but that method returns a Future and finishes instantly. I suppose the Spring container need to wait for the Future callback somehow. Any idea on how to achieve this? Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
