Skip to main content

Posts

Showing posts from November, 2019

Understanding JMX, Spring JMX

What is JMX ? Provides an architecture to manage resources dynamically at runtime. JMX is used mostly in enterprise applications to make system configurable or to get the state of application   At any point of time .Because the JMX technology is dynamic ,you can use it to monitor and manage resources as they are created, installed and implemented .You can also use the JMX technology to monitor And manage the JVM. What can you do with  JMX ? Manage resourses Manage JVM What are components of  MX ? The JMX technology can be divided into three levels, as follows: Instrumentation JMX agent - Mbean Server Remote management Instrumentation To manage resources using the JMX technology, you must first instrument the resources in the Java programming language. You use Java objects known as  MBeans  to implement the access to the resources' instrumentation. MBeans must follow the design patterns and interfaces defined ...