A anotação @MessagingGateway
pode defaultRequestChannel
ser definida usando o espaço reservado para propriedade ${}:
@MessagingGateway(defaultRequestChannel = "${gateway.request.channel}")
public interface MessageGateway {
@Gateway(requestTimeout = 2000)
void sendListing(List<Path> entries);
}
Mas não posso fazer algo semelhante na anotação @Gateway:
@MessagingGateway
public interface MessageGateway {
@Gateway(requestTimeout = 2000, requestChannel = "${gateway.request.channel}") // invalid
void sendListing(List<Path> entries);
}
Da mesma forma, não consigo definir dinamicamente inputChannel
/ outputChannel
do ServiceActivator usando o placeholder de propriedades ou SpEl.
Preciso recorrer à configuração ServiceActivator
manual usando ServiceActivatingHandler
?