JMX

  Home  Applications Programs  JMX


“JMX Interview Questions and Answers will guide us now that Java Management Extensions (JMX) is a Java technology that supplies tools for managing and monitoring applications, system objects, devices such as printers and service oriented networks. Those resources are represented by objects called MBeans, so learn more about JMX by this JMX Interview Questions with Answers guide”



30 JMX Questions And Answers

28⟩ What is dependency injection?

A pattern (design) whereby collaborators are passed into an object from the outside - the object does not allocate them for itself.

 179 views

29⟩ Why is dependency injection useful?

Different collaborators for different environments can be injected - test, production, test-database, real database. This allows classes to be tested independent of its collaborators (makes it easy to pass in stub or mock objects).

 167 views