1
It is possible to recover populated object in requestParameter?
Type coming from Javascript?
req.getParameter("objeto");
I have the object Person who possesses
Name
Telephone
in Javascript I send
var obj = {nome: 'Carlos', telefone: '929999999'}
How to recover this populated object in Servlet instead of String
Obj obj = req.getParameter("obj");
Could you improve your question? Can’t understand what you want to achieve.
– Andrew Ribeiro
Yes, of course
– adventistaam