+ "\n For more information please visit: "
+ "\n http://www.springsource.org/spring-integration "
+ "\n "
+ "\n=========================================================" );
final AbstractApplicationContext context =
new ClassPathXmlApplicationContext("classpath:META-INF/spring/integration/*-context.xml");
LOGGER.info("\n========================================================="
+ "\n "
+ "\n This is the TCP-AMQP Sample - "
+ "\n "
+ "\n Start a netcat, listening on port 11112 - "
+ "\n netcat -l 11112 "
+ "\n "
+ "\n In another terminal, telnet to localhost 11111 "
+ "\n Enter text and you will see it echoed to the netcat "
+ "\n "
+ "\n Press Enter in this console to terminate "
+ "\n "
+ "\n=========================================================" );
System.in.read();
context.close();
}