• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Is it Complusory to use Spirng Framework with ActiveMQ.?

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi JavaRanchers


I am totally new in the field of JMS. As per my project requirement I have to use ActiveMQ. I have successfully configured ActiveMQ in my PC. when I run the url
"http://localhost:8161/admin", I am getting the admin page,that means my ActiveMQ is working. Now, the problem is I don't know Spring and as well as EJB (message Driven beans)- JMS. I have referred many websites,but all provides tutorial in Spring framework.

Can you provide some E-book or any link that provides me the better learning material without spring framework.?

Right now I am learning EJB's Message Driven Bean.

Is it necessary to have detailed experience in EJB to work with ActiveMQ.?


Thanks in Advance

Regards
================
James Royson
 
author
Posts: 3285
13
Mac OS X Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi James,

james royson wrote:Hi JavaRanchers

I am totally new in the field of JMS. As per my project requirement I have to use ActiveMQ. I have successfully configured ActiveMQ in my PC. when I run the url "http://localhost:8161/admin", I am getting the admin page,that means my ActiveMQ is working. Now, the problem is I don't know Spring and as well as EJB (message Driven beans) - JMS. I have referred many websites, but all provides tutorial in Spring framework.

Can you provide some E-book or any link that provides me the better learning material without spring framework?

Right now I am learning EJB's Message Driven Bean.

Is it necessary to have detailed experience in EJB to work with ActiveMQ.?

Thanks in Advance

Regards
================
James Royson



Active MQ is simply a JMS compliant message provider. You can use with it:

* Stand alone java code
* MDBs (EJB)
* MDPs (Spring)
* Other technologies that speak JMS.

You certainly do not need to use MDBs or Spring in order to use JMS, but they are used to solve common messaging problems. A good place to start is Here

Hope that helps
reply
    Bookmark Topic Watch Topic
  • New Topic