My java class is below. how to get the value of the string returnStatus to JSP . Kindly let me know how to pass this returnStatus value to JSP as my JSp is showing blank even though it is mapped in struts
public class WCSOrdersListAction extends ActionSupport{
private String returnStatus;
public String execute() throws SQLException, ClassNotFoundException {
setReturnStatus("SUCCESS");
}
return SUCCESS;
public String getReturnStatus() {
return returnStatus;
}
public void setReturnStatus(String returnStatus) {
this.returnStatus = returnStatus;
}
}