Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I use Comet with Spring MVC?

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.

like image 575
leedm777 Avatar asked Dec 16 '10 00:12

leedm777


People also ask

Can we use Spring MVC and Spring boot together?

Yes, you can use Spring MVC with Spring Boot. To create and run a Spring MVC web application in spring boot, you need to add the spring-boot-starter dependency in your pom. xml file.


1 Answers

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.

like image 86
Bozho Avatar answered Sep 21 '22 09:09

Bozho