繁体   English   中英

Spring Cloud AWS SQS 侦听器不起作用

[英]Spring Cloud AWS SQS Listener not working

每当在 Amazon S3 中上传文件时,我都会尝试为 AWS SQS 配置 Listner。 我已经从 S3 配置了事件,以便在 S3 中上传文件时将消息转储到 SQS 中。

现在我正在使用 Spring cloud(version - 1.2.1.RELEASE) 为 S3 事件配置一个 SQS 监听器。 以下是我的配置文件:

aws-config.xml

<aws-context:context-credentials>
<aws-context:simple-credentials access-key="*******" secret-key="******"/>
</aws-context:context-credentials>
<aws-context:context-region  region="ap-south-1" />  
<aws-context:context-resource-loader/>  
<aws-messaging:annotation-driven-queue-listener max-number-of-messages="10" 
wait-time-out="20" visibility-timeout="3600""/> 

awsResourceConfig.java

@Configuration
 @EnableSqs
 @ImportResource("classpath:/aws-config.xml")
 @EnableRdsInstance(databaseName = "******", 
               dbInstanceIdentifier = "*****", 
               password = "******")
 public class AwsResourceConfig {
@SqsListener(value = "souviksqs", deletionPolicy = SqsMessageDeletionPolicy.ON_SUCCESS)
public void receiveNewFileUpload(S3EventNotification event) {
    try {
        if ( event != null && !CollectionUtils.isNullOrEmpty( event.getRecords() ) && event.getRecords().get( 0 ) != null ) {
            S3Entity entry = event.getRecords().get(0).getS3();
            System.out.println("############ File Uploaded to ###################### " + entry.getBucket().getName() + "/" + entry.getObject().getKey());
        }
    } catch (Exception e) {
        System.out.println("Error reading the SQS message " + e);

    }
}

}

每当在 S3 中上传文件时,都会在 SQS 中添加一条消息。 但是 SQSListener 不起作用。

我错过了什么吗?

确保您使用的是spring-cloud-aws-messaging而不是spring-cloud-starter-aws-messaging

此外,如果情况并非如此,请确保SimpleMessageListenerContainer's自动启动未设置为 false。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM