Alain Sahli

Results 5 comments of Alain Sahli

Also check open issue: https://jira.atlassian.com/browse/CONFSERVER-40101 https://jira.atlassian.com/browse/CONFSERVER-39042 https://jira.atlassian.com/browse/CRA-1276

This one is related to #25 as an `ac:task` should be assigned to someone.

Hi @akberc You can use the annotation `@Header` or `@Headers` in this case. ``` java @SqsListener("queueName") public void listenerMethod(@Header("MessageId") String messageId) {/*...*/} // OR @SqsListener("queueName") public void listenerMethod(@Headers Map headers)...

Hi @unniksk You can set the visibility using XML or Java Config: ``` java @Bean public SimpleMessageListenerContainerFactory simpleMessageListenerContainerFactory() { SimpleMessageListenerContainerFactory factory = new SimpleMessageListenerContainerFactory(); factory.setVisibilityTimeout(20); return factory; } ``` ```...

Hi @Damon-LiuZhiJun This is not that easy to introduce as the messaging API of Spring does not support returning results when sending a message. We'll have to look into it...