1
vote
Write a Servlet that Talks to JMS (ActiveMQ) and OnMessage Update the Site
Have you tried reading the answers for this question which links to the …
2
votes
Reconnecting JMS listener to JBossMQ
I'd highly recommend you use the Spring abstractions for JMS such as the MessageListenerConta …
2
votes
Should I use EJB3 or Spring for my business layer?
I tend to prefer Spring over EJB3 but my recommendation would be whichever approach you take, try to stick to writing POJOs and use the standard annotations where possible, like the JSR annotations …
4
votes
JAX-RS Frameworks
FWIW we're using Jersey as its packed full of features (e.g. WADL, implicit views, XML/JSON/Atom support) has a large and vibrant developer community behind it and has great …
7
votes
REST in Java
I'm a huge fan of JAX-RS - I think they've done a great job with that specification. I use it on a number of projects and its been a joy to work with.
JAX-RS lets you create REST resources …
2
votes
What are the advantages/disadvantages for distributing multi stage tasks via JMS or JavaSpaces?
If you want SEDA, sending messages from stage to stage, then JMS implementations are typically much faster and more scalable, since MOMs are designed to not require locks so they can be highly asyn …
2
votes
Unit testing a JAX-RS Web Service?
Jersey comes with a great RESTful client API that makes writing unit tests really easy. See the unit tests in the examples that ship with J …
1
vote
Programming against interfaces: Do you write interfaces for all your domain classes?
I'd recommend staying lean and agile - don't do anything until you need to do it, then let your IDE do the refactoring for you when you need it.
Its pretty trivial in IDEA/eclipse to turn …
2
votes
Any issues with ActiveMQ broker and clients running on different JDKs?
ActiveMQ 5.x works on Java 1.5 or later - any JVM 1.5 or later should work fine as ActiveMQ uses its own marshalling layer and does not rely on serialisation etc.
If you want to work with …
2
votes
Creating a REST webserver with security
The best way to write restful resources in Java is via the JAX-RS standard. So I'd recommend you download Jersey which is the JAX-RS reference …
1
vote
Distributed event handling mechanism for Java
Whichever tool you use I'd recommend hiding the middleware APIs from your application logic. For example if you used the …
2
votes
JNDI without a J2EE Container (with JNP? Maybe some other provider?)
Apache ActiveMQ already comes with an integrated lightweight JNDI provider. See …
3
votes
Lightweight messaging (async invocations) in Java
Do you need any kind of persistence (e.g. if your JVM dies in between processing thousands of messages) and do you need messages to traverse to any other JVMs?
If its all in a single JVM an …
7
votes
11
votes
what is JMS good for?
JMS and messaging is really about 2 totally different things.
publish and subscribe (sending a message to as many consumers as are interested - a bit like sending an email to a mailin …
