42

I'd like to add some Comet/server push capabilities to a simple web application. I'm having trouble finding up to date information on how to do this.

Can anyone point me to some examples, tutorials, blogs, or anything recent that walks you through using Comet with Spring MVC?

In case it matters, I'm using Freemarker to render the views, and JQuery for the JavaScript framework.

Aside: I already know all about Lift and its awesome Comet support built-in. This app is a proof of concept that I've already implemented using Lift. Now I'm building it with Spring MVC to compare and contrast.

Edit: I've started trying out DWR. It's not fantastic, but I can make something that works. I also checked out Atmosphere, but I couldn't get any traction with it at all.

I'm leaving the question open. Hopefully some better suggestions will come in.

leedm777
  • 23,444
  • 10
  • 58
  • 87
  • 1
    atmosphere is the thing ;) You'd have to be more specific on what didn't work with it. – Bozho Dec 17 '10 at 21:50
  • Bozho: it's not that anything with atmosphere didn't work. I just spent an hour or two with the docs and examples, and didn't get any closer to figuring out how to use it to push events up to JavaScript on the web page. – leedm777 Dec 20 '10 at 18:30
  • I'm working on getting atmosphere and spring mvc playing together; i'll post an answer some time next month if I get some traction or have an epiphany. – Paul Adamson Dec 24 '10 at 10:11

2 Answers2

12

Atmosphere is really the best I've seen (I haven't used any, but I've evaluated multiple solutions). The good thing with it is that it uses the best mechanism available. If running on servlet 3.0 - using the async support. If using jetty - using its support, and so on. It also has spring integration.

So, perhaps you should ask a concrete question about atmosphere. See this and this related questions.

Community
  • 1
  • 1
Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
0

Try ItsNat Comet, Spring can be used for setting up your application (contact with me if you don't know how you do so) but Spring MVC is not used.

jmarranz
  • 6,459
  • 2
  • 21
  • 10