Damien

Results 10 comments of Damien

@lenlaurito did you tried setup the SNS topic with this attribute => https://docs.aws.amazon.com/sns/latest/dg/sns-large-payload-raw-message-delivery.html more explanation here: https://github.com/awspring/spring-cloud-aws/issues/886

it's working actually, I was able to automatically de-serialize object in my @SqsListener, like that: ``` @SqsListener(queueNames = "some_queue.fifo") public void onEvent(final Message event) { ..... } OR @SqsListener(queueNames =...

@jndietz I'm also in trouble with a similar solution, I had deserialization issue and then we cannot use multiple @SqsListener with different types on same queue. I'm in a publish/subscribe...

@tomazfernandes message converters are working well for custom deserialization but how to "route" the message base on the type to different @SqsEventListener using the same queue? Sorry for hijacking the...

@tomazfernandes thanks for your response. this limitation on the @SqsListener should mentioned in the project documentation, since it's an implementation of "spring-messaging" like @RabbitListener, @KafkaListener or @JmsListener I was expecting...

> Note that [since IntelliJ 2021.2](https://blog.jetbrains.com/idea/2021/07/intellij-idea-2021-2/#key_updates:~:text=We%E2%80%99ve%20added%20several%20actions%20that%20the%20IDE%20will%20initiate%20when%20you%20save%20the%20project%2C%20including%20reformatting%20code), there is a built-in `Tools > Actions on Save` settings menu that allows you do a lot of standard actions, like reformatting or optimising...

@AB-xdev great to see someone taking over this, did you contact the original author to replace the package in the marketplace ?

> There's also https://github.com/awslabs/mountpoint-s3 which offers similar functionality. Yes but mountpoint-s3 have some limitations like https://github.com/awslabs/mountpoint-s3/issues/1174 so it's not a fully valid workaround

I will be happy to have this in my project :+1: It's missing some features in the PR to fit all my needs (Signout, adminSetUserPassword, changePassword, deleteUser etc...) but it's...