public class contTest extends ActionSupport{ public Employee emp1; public String execute(){ System.out.println("firstName-->>>"+emp1.getFirstName()); System.out.println("lastName-->>>"+emp1.getLastName()); return SUCCESS; } //Create Setter and Getter of emp1 object}和在AddEmp.jsp中
<th>First Name :</th><td><input type = "text" id ="firstName" name = "emp1.firstName" value= ""></td><th>Last Name :</th><td><input type = "text" id ="lastName" name = "emp1.lastName" value= ""></td>



