Skip to content
Advertisement

How to pass an object from front-end to Struts 2

I am trying to send value of a field to Struts2 back-end through JavaScript but it returns NullpointerException.

JavaScript

Once form is submitted the request will be sent to the following JavaScript method to be sent to back-end.

JavaScript

the request will be created and sent as following

JavaScript

But in back-end when I try to show the value it returns NullPointerException.

Java:

JavaScript

Classes:

JavaScript

Advertisement

Answer

You need to use ModelDriven interface. Implement the ModelDriven and override its method then return your object using method of modelDriven.

Struts2 Documentation

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement