Skip to content
New issue

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

Adding a try/catch to print errors when JMX published proxies cannot get their target beans #686

Closed
wants to merge 1 commit into from

Conversation

steveash
Copy link

Adding a try/catch to print errors when JMX published proxies cannot get their target beans

We use the @ManagedResource and @ManagedOperation all the time. Since most of our singletons are lazy when it publishes the managed JMX bean it creates a cglib proxy to register with the mbean server in order to preserve the laziness. This is good.

The first time this JMX method is invoked, the bean is retrieved from the container and the managed operation method is invoked. If anything fails in between the mbean server calling the proxy and the proxy calling our application code inside the operation -- the exception will go back through RMI and if the client is JConsole or JVisualVm then it will fail as the exception classes aren't on those classpaths. It would be nice if spring would provide a way to enable logging in these scenarios.

This PR adds a try/catch to log an error when the getTarget fails as would be the case here. This would only affect generated proxies, which I think is a narrow change that doesn't seem to have any negative consequences. When would you not want to log an error here?

I have signed and agree to the terms of the SpringSource Individual
Contributor License Agreement.

Issue: SPR-12399

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants