Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Atmosphere framework Spring mvc integration

I am trying to integrate Atmosphere framework with Spring MVC

the samples war files given here http://async-io.org/download.html don't contain the .java files in the src folder.

I also went through the other integration examples http://keaplogik.blogspot.com/2012/05/atmosphere-websockets-comet-with-spring.html

I am having some problem connecting with twitter when reading through this article.

A. Is there a simpler example somewhere? with explanation like a hello world.

B. How do I get the java files of the sample war file?

I would really appreciate any help Thanks :)

like image 935
underdog Avatar asked Jan 01 '14 10:01

underdog


1 Answers

I wrote an example on how to integrate Atmosphere framework into Spring framework with usage of websocket protocol and long-polling as fallback protocol. You can find it on GitHub.

As a matter of second question the answer in no. You can't get the java files out of war packages. War packages contains of compiled java classes, resource files, xml configuration files, etc.

like image 54
Greg Avatar answered Nov 07 '22 01:11

Greg