View Full Version : JMX and spring 1.1
hucmuc
Sep 16th, 2004, 02:53 PM
Has anyone tried this?
I checked it out and I've discovered a couple of dependency issues.
In class AbstractJmxObjectProxyFactory it references axis ClassUtil.forName. Doesn't spring have this in ClassUtil. We shouldn't need to include apache axis if we are using jmx.
In class JmxProxyFactoryBean, there shouldn't be direct references to the CglibJmxObjectProxyFactory directly (use forName to instantiate it). Once again, I don't want to be force to include the cglib library.
Dino
robh
Sep 17th, 2004, 02:49 AM
Dino,
Thanks for bringing this to my attention - the ClassUtils thing is a coding error on my part, I have fixed this locally and it will committing it shortly. I actually went to the trouble of modifying Spring ClassUtils as well!
As for the dependency on Cgilb, this pattern is followed in the AOP proxy factories so I decided to follow it here to maintain uniformity across the code base. If the consensus is to remove this it is no bother for me and I'll do it next time I make some changes.
Rob
hucmuc
Sep 17th, 2004, 11:36 AM
BTW, kudos on the implementation. After removing these dependencies (which took 2 secs) I was able to define and deploy to Tomcat 5x within 5 minutes. Couldn't ask for an easier solution.
You are right about the CGLIB so ignore me about this. I will have to remove this by hand since I have to compile it directly into my code set (I don't use CGLIB).
Dino
robh
Sep 17th, 2004, 12:05 PM
Dino,
If the Cglib thing is causing you issues, I will factor it out. Maintaining a similarity across the codebase is not as important as creating something that is usable by everyone.
I will remove this dependency in the next commit round.
Rob
robh
Sep 17th, 2004, 01:32 PM
I have removed this dependency and committed the code to CVS
hucmuc
Sep 17th, 2004, 03:57 PM
It is not causing me serious issues. What you did is unavoidable. If your portion was compiled into the spring.jar this would not be an issue since the execution path will not use the cglib (however, there was an issue with the ClassUtils which you fixed). The only reason I am having problems is that I'm compiling it within my environment (it takes me two secs to remove the links). I'm sorry I misled you.
Dino
robh
Sep 18th, 2004, 03:44 AM
Dino,
You didn't mislead me. You should be able to use Spring without having to modify the code and without having to add jars that you don't need. This way you can avoid that.
Rob
Powered by vBulletin® Version 4.2.1 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.