Print
How do I enable async one ways

By default asynchronous one way methods are disabled; as most users of Spring Remoting tend to assume synchronous calls.

To enable async one way calls for methods (which are void and throw no checked exceptions), you need to set the flag on the SimpleMetadataStrategy class.

e.g.

SimpleMetadataStrategy strategy = new SimpleMetadataStrategy();
strategy.setOneWayForVoidMethods(true);
Powered by Atlassian Confluence