We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sebastian Annies opened SWS-699 and commented
private void initMethodReturnValueHandlers() { ... if (isPresent(XOM_CLASS_NAME)) { methodArgumentResolvers.add(new XomPayloadMethodProcessor()); } ... }
as you can see the XomPayloadMethodProcessor is added to the methodArgumentResolvers and not to the methodReturnValueHandlers.
To fix the problem just replace the methodArgumentResolvers.add(...) with methodReturnValueHandlers.add(...)
Affects: 2.0 GA
Referenced from: commits 7b1862a
The text was updated successfully, but these errors were encountered:
Arjen Poutsma commented
Fixed. Thanks for spotting this!
Sorry, something went wrong.
Closing old issues
poutsma
No branches or pull requests
Sebastian Annies opened SWS-699 and commented
as you can see the XomPayloadMethodProcessor is added to the methodArgumentResolvers and not to the methodReturnValueHandlers.
To fix the problem just replace the methodArgumentResolvers.add(...) with methodReturnValueHandlers.add(...)
Affects: 2.0 GA
Referenced from: commits 7b1862a
The text was updated successfully, but these errors were encountered: