Thanks. I was aware of the JMX Relation service, but hoped I didn't have to go to that level of complexity.
As an example, look at jconsole as a client app for the Platform MBean Server. If you,...
Type: Posts; User: bscipioni; Keyword(s):
Thanks. I was aware of the JMX Relation service, but hoped I didn't have to go to that level of complexity.
As an example, look at jconsole as a client app for the Platform MBean Server. If you,...
I have forced cglib proxies for my MBeans since my setters invoke Spring AOP functionality on some base class methods. So now when I set a property from either a JMX client, or the application the...
Yes, I am talking about custom Validators that implement org.springframework.validation.Validator. Turns out I was wrong. I was surprised to find that the bean field, "field", does not even have to...
It appears that Spring validators require their targets to be java beans having all three of getter, setter and bean field. None of these can be inherited; the bean has to be concrete. This...