spring-cloud-aws
spring-cloud-aws copied to clipboard
All development has moved to https://github.com/awspring/spring-cloud-aws Integration for Amazon Web Services APIs with Spring
**Is your feature request related to a problem? Please describe.** I'm not sure if this is a missing feature or missing documentation. I do not see properties updated when a...
**Type**: Bug **Component**: SQS **Describe the bug** I'm using the region properties to override the default region like this ``` cloud.aws.sqs.endpoint=http://localhost:4566 cloud.aws.sqs.region=sa-east-1 ``` The injected object has not the region...
I have run into the issue with message size > 256mb and Spring AWS Cloud not supporting AWS extended SQS client library. Error explanation from production log: Service: AmazonSQS; Status...
``` @SqsListener(value = "foo", deletionPolicy = SqsMessageDeletionPolicy.ON_SUCCESS) public void fooMethod(final String message) { processEvents(message); } ``` I am using SqsListener which at the app startup loads foo queue just fine....
Hello, we want to use the native image of spring boot to use GraalVM: https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/ and have an fast startime. Our problem is that if we add the library we...
**Type**: `SqsListener` support for `AWS SDK 2.0 ` **Is your feature request related to a problem? Please describe.** Need to use SqsListeneer with AWS SDK 2.0 to listen to and...
**Type**: Bug **Component**: SQS **Describe the bug** After the application runs for a few days, listener can not receive the message and I saw the count of messages in the...
…oud/spring-cloud-aws/issues/772 ## :loudspeaker: Type of change - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring ## :scroll: Description When building up the context...
The issue below shows a way that this might be achieved, but it's not clear if this way is supported. https://github.com/spring-cloud/spring-cloud-aws/issues/134 The [documentation ](https://docs.awspring.io/spring-cloud-aws/docs/current/reference/html/index.html#using-amazon-web-services)does not mention any way of explicitly...
When I use refresh scope for SImpleMessageListener in my project, my SQS stops from working. So I used SimpleMessageListenerFactory which made it work but after refresh scope was done it...