@Bean
 public QueueChannel numberChannel() {
   QueueChannel channel = new QueueChannel();
   channel.setDatatypes(Number.class);
   return channel;
 }
 @Bean
 public QueueChannel bytesChannel() {
   QueueChannel channel = new QueueChannel();
   channel.setDatatypes(byte[].class);
   return channel;
 }