Reputation: 1354
Maybe a little bit stupid question, but is JSF managedBeans and JMX managedBeans the same? Can I access, for example, JSF managedBean through JMX?
Upvotes: 0
Views: 301
Reputation: 5668
No, JMX beans and JSF beans are completely different concepts. JSF beans are primarily accessible via EL expressions and JMX beans can be accessed using the standard Java management interfaces.
Upvotes: 1