91-9990449935 0120-4256464 |
Web Application with HibernateHere, we are going to create a web application with hibernate. For creating the web application, we are using JSP for presentation logic, Bean class for representing data and DAO class for database codes. As we create the simple application in hibernate, we don't need to perform any extra operations in hibernate for creating web application. In such case, we are getting the value from the user using the JSP file. Example to create web application using hibernateIn this example, we are going to insert the record of the user in the database. It is simply a registration form. index.jspThis page gets input from the user and sends it to the register.jsp file using post method. register.jspThis file gets all request parameters and stores this information into an object of User class. Further, it calls the register method of UserDao class passing the User class object. User.javaIt is the simple bean class representing the Persistent class in hibernate. user.hbm.xmlIt maps the User class with the table of the database. UserDao.javaA Dao class, containing method to store the instance of User class. hibernate.cfg.xmlIt is a configuration file, containing informations about the database and mapping file.
Next TopicGenerator Classes
|