使用Spring Integration DSL在我的errorChannel中遇到任何错误时发送电子邮件

时间:2019-06-02 05:03:53

标签: spring-integration spring-integration-dsl

我正在使用DSL开发弹簧集成的API,这是如何工作的

JDBC轮询适配器启动流并从表中获取一些数据,然后将其发送到DefaultRequestChannel,从此处通过各种通道处理/流动消息。

现在我正在尝试
1.如果我的错误通道中发生/检测到任何错误(例如,连接问题,在轮询数据时发现错误记录),请发送电子邮件。

  1. 向支持小组发送电子邮件后,我想暂停15分钟,然后自动恢复。

我尝试创建一个sendEmailChannel(我的errorChannel的接收者),它对我不起作用。因此,只需创建如下的转换器方法

此代码运行良好,但这是一个好习惯吗? @

@Transformer(inputChannel="errorChannel", outputChannel="suspendChannel")
public Message<?> errorChannelHandler(ErrorMessage errorMessage) throws RuntimeException, MessagingException, InterruptedException {

Exception exception = (Exception) errorMessage.getPayload();
    String errorMsg = errorMessage.toString();
    String subject = "API issue";
    if (exception instanceof RuntimeException) {
        errorMsg = "Run time exception";
        subject = "Critical Alert";
    }
    if (exception instanceof JsonParseException) {
        errorMsg = ....;
        subject = .....;
    }

    MimeMessage message = sender.createMimeMessage();
    MimeMessageHelper helper = new MimeMessageHelper(message);
    helper.setFrom(senderEmail);
    helper.setTo(receiverEmail);
    helper.setText(errorMsg);
    helper.setSubject(subject);
    sender.send(message);
    kafkaProducerSwitch.isKafkaDown());
    return MessageBuilder.withPayload(exception.getMessage())

            .build();
}

我正在寻找一种处理上述逻辑的更好方法。 还有任何建议将我的流量暂停几分钟。

1 个答案:

答案 0 :(得分:0)

您绝对可以使用Spring Integration框中的邮件发送通道适配器从错误通道https://docs.spring.io/spring-integration/docs/5.1.5.RELEASE/reference/html/#mail-outbound发送这些消息。 Java DSL变体是这样的:

.handle(Mail.outboundAdapter("gmail")
                        .port(smtpServer.getPort())
                        .credentials("user", "pw")
                        .protocol("smtp")))

当您检查某个CompoundTriggerAdvice bean的状态以激活AtimocBoolean实现中的一个或另一个触发器时,可以通过beforeReceive()扩展名来执行挂起。这样的AtimocBoolean可以在另一个订阅者中更改其状态为errorChannel,因为默认情况下该订阅者是PublishSubscribeChannel。从false返回beforeReceive()之后,请不要忘记使状态恢复正常。仅仅因为这足以在此时将您的系统标记为正常,因为它只能在15分钟后才能正常工作。