How to get Spring MessageContext from Java class?
Should I use some @Resource or @Autowire to inject context var to class or, for instance, to use some global context SpringContext or some other in order to get MessageContext.
What is approach?
I’d start by reading what the standard method of doing this is and try that:
That’s how to do it on the server side. On the client side, the request and response contexts are just simple maps that you retrieve from the service stub (which will implement
BindingProvidereven if you don’t explicitly ask for it); they don’t need the scope management thatMessageContextadds.