Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

java web based chat application

Tags:

jquery

jsp

gwt

I wanted to develop a small web based chat application. Currently I have developed by using Applets. So can I create the application by using JSP and servlets without including the applets. Probably I would like to use JQuery or GWT in my web application. Is it possible?

like image 267
user414967 Avatar asked Nov 07 '25 18:11

user414967


1 Answers

Of course you can implement a chat with the JSP and the jQuery library. jQuery provides a rich set of methods for AJAX capabilities. But in my opinion GWT is suitable the best for implementing multi-featured chat. It's ideal for applications based on AJAX and which have a rich user interface. You can greatly simplify development your application and AJAX-implementation using very convenient feature of Remote procedure call communications between client-side and server-side.

Here you can find answers to some questions from the server push, handling of threads and safety issues on the server side. This is necessarily need you to develop a chat application.

And here's an interesting example with GWT implementation of chat: first and second part.

like image 188
kapandron Avatar answered Nov 09 '25 10:11

kapandron