Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JMS and JMX tutorials?

Tags:

java

jms

jmx

i am preparing for an interview which requires a bit hands on JMS and JMX, but i didnt work on these. so need any video tutorial links which can make me understand quickly. thanks.

like image 435
GuruKulki Avatar asked Aug 15 '10 17:08

GuruKulki


People also ask

What is JMX and JMS?

You would use JMS when you are building an system that needs (reliable, robust, resilient) message passing between different components (typically) on different computers. You would JMX when you are implementing monitoring for your system.

What is JMS tutorial?

JMS (Java Message Service) is an API that provides the facility to create, send and read messages. It provides loosely coupled, reliable and asynchronous communication. JMS is also known as a messaging service.

What is JMS used for?

The Java Message Service (JMS) makes it easy to develop enterprise applications that asynchronously send and receive business data and events. It defines a common enterprise messaging API that is designed to be easily and efficiently supported by a wide range of enterprise messaging products.

How many types of MBeans are there in JMX?

The JMX specification defines five types of MBean: Standard MBeans. Dynamic MBeans. Open MBeans.


1 Answers

I don't have any video to suggest. However, I can suggest the following tutorials to get started with JMS and JMX.

  • For JMS
    • JMS Tutorial and Code Camps
    • Chapter 31 The Java Message Service API in the Java EE 5 tutorial
  • For JMX
    • Getting Started with Java Management Extensions (JMX): Developing Management and Monitoring Solutions
    • Lesson: Overview of the JMX Technology in the Java Tutorials
    • Java Management Extensions (JMX) Technology Tutorial

PS: Maybe videos work well for you but, to my experience, the most effective way to learn something is hands-on practice - and this especially true with programming - and I warmly recommend to take some hours to practice a bit. The above tutorials can help.

like image 155
Pascal Thivent Avatar answered Oct 12 '22 11:10

Pascal Thivent