I'm trying to do the equivalent to the following using annotations:
<service-activator input-channel="exampleChannel" output-channel="replyChannel" ref="somePojo" method="someMethod"/>

I can't use the Handler annotation in conjunction with MessageEndpoint because I'm going to be connecting several channels to the one POJO, and I can't use the Subscribe or Publish methods because I want it to send a reply. Is it even possible to do this with the annotations?