Questions tagged [serviceactivator]

2 questions
0
votes
1 answer

How to configure polling into spring boot application?

I have configured polling into my spring boot application but, i am getting below error. java.lang.IllegalAccessError: tried to access method org.springframework.integration.context.IntegrationProperties.()V from class…
0
votes
1 answer

Spring ServiceActivator not executed when defined inside my test

I have the following publishing class. @Component public class Publisher { @Autowired private MessageChannel publishingChannel; @Override public void publish(Event event) { publishingChannel.send(event); } } I have the…
reka18
  • 7,440
  • 5
  • 16
  • 37