I am trying to send value of a field to Struts2 back-end through JavaScript but it returns NullpointerException
.
JavaScript
x
<input type="hidden" id="employee.payslip.id" name="employee.payslip.id" value="5"/>
.
Once form is submitted the request will be sent to the following JavaScript method to be sent to back-end.
JavaScript
function payslipPayment(){
var formValues = $('#myform').serialize();
.
xmlhttp.open("get","../payslip/pay?"+formValues,false);
xmlhttp.send();
}
the request will be created and sent as following
JavaScript
http://localhost/payslip/pay/employee.payslip.id=5&employee.payslip.year=2013&....
But in back-end when I try to show the value it returns NullPointerException
.
Java:
JavaScript
public class payslip {
private Employee employee;
public String pay{
System.out.println("Id:"+employee.payslip.id):
System.out.println("Year:"+employee.payslip.year;
}
getter and setter
}
Classes:
JavaScript
public class Employee {
private Payslip payslip;
.
getter and setter
}
public class Payslip{
private long id;
getter and setter
}
Advertisement
Answer
You need to use ModelDriven interface. Implement the ModelDriven and override its method then return your object using method of modelDriven.