基于注解的配置

以下示例来自示例存储库,它展示了使用注解而不是 XML 时可用的某些配置选项。

@EnableIntegration (1)
@IntegrationComponentScan (2)
@Configuration
public static class Config {

    @Value(${some.port})
    private int port;

    @MessagingGateway(defaultRequestChannel="toTcp") (3)
    public interface Gateway {

        String viaTcp(String in);

    }

    @Bean
    @ServiceActivator(inputChannel="toTcp") (4)
    public MessageHandler tcpOutGate(AbstractClientConnectionFactory connectionFactory) {
        TcpOutboundGateway gate = new TcpOutboundGateway();
        gate.setConnectionFactory(connectionFactory);
        gate.setOutputChannelName("resultToString");
        return gate;
    }

    @Bean (5)
    public TcpInboundGateway tcpInGate(AbstractServerConnectionFactory connectionFactory)  {
        TcpInboundGateway inGate = new TcpInboundGateway();
        inGate.setConnectionFactory(connectionFactory);
        inGate.setRequestChannel(fromTcp());
        return inGate;
    }

    @Bean
    public MessageChannel fromTcp() {
        return new DirectChannel();
    }

    @MessageEndpoint
    public static class Echo { (6)

        @Transformer(inputChannel="fromTcp", outputChannel="toEcho")
        public String convert(byte[] bytes) {
            return new String(bytes);
        }

        @ServiceActivator(inputChannel="toEcho")
        public String upCase(String in) {
            return in.toUpperCase();
        }

        @Transformer(inputChannel="resultToString")
        public String convertResult(byte[] bytes) {
            return new String(bytes);
        }

    }

    @Bean
    public AbstractClientConnectionFactory clientCF() { (7)
        return new TcpNetClientConnectionFactory("localhost", this.port);
    }

    @Bean
    public AbstractServerConnectionFactory serverCF() { (8)
        return new TcpNetServerConnectionFactory(this.port);
    }

}
1 标准 Spring 集成注解,启用集成应用程序的基础结构。
2 搜索@MessagingGateway 接口。
3 客户端流程的入口点。调用应用程序可以使用@Autowired获取此Gateway bean并调用其方法。
4 出站端点由一个MessageHandler和一个包装它的消费者组成。在此场景中,@ServiceActivator根据通道类型配置端点。
5 入站端点(在TCP/UDP模块中)都是消息驱动的,因此只需要声明为简单的@Bean实例。
6 此类提供许多POJO方法,用于此示例流程(服务器端上的@Transformer@ServiceActivator,以及客户端上的@Transformer)。
7 客户端连接工厂。
8 服务器端连接工厂。