Null values are insering in data base using Struts2 and hibernate
I am using struts2 and Hibernate integration application to insert values in database. But after inserting values from form filed only null value is saving in database; this is my form jsp file employee.jsp <%@ taglib uri ="/struts-tags" prefix="s"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> </head> <body> <s:form action="employee" method="post"> <s:textfield name ="name" label="ENTER your name"/> <s:textfield name="address" label="Enter Address"/> <s:submit label="submit">submit</s:submit> </s:form> </body> </html>