Hi, In this article, my aim is to create an application which uses the concept of Hibernate in Servlet with Ajax support of Jquery.
Below figure can give you the idea of final look and feel of the complete application:
Servlet, Hibernate, jQuery and Ajax based google like chat
DataBase:
Here I am using the MySQL Database for saving the messages entered by the users:
Copy below code to create the table in database named “test”.
1DROP TABLE IF EXISTS `test`.`chatmessage`;
2CREATE TABLE ...