Spring integration TCP/IP close connection problem
问题 I use spring integration as a Full Duplex communication system's gateway module. that flow is client app <--> spring-integration-ip-module (siid) <--> server app The problem is when client app closed, ssid can't closed connection with server app side? here is my code // siid connet to client @Bean public TcpNetServerConnectionFactory server(){ TcpNetServerConnectionFactory server=new TcpNetServerConnectionFactory(1234); server.setMapper(new TcpSerMapper()); // use 'mapper' attribute in XML