The name of the attribute in ActionForm must start with small letter like in this case
public class GradeForm extends ActionForm{
private static final long serialVersionUID = 1L;
private
String empID;
private String empName;
private int empSal;
// and after that generate the getter and setter of the above attribute
}
I think it will solved your problem