reactjs - How can I get front end input values into spring restful @RequstMapping handler method by form using Rest and React -
@requestmapping(value = "/getprofileviewdetails.html", method = requestmethod.post) public @responsebody responseentity<string> getprofileviewdetails(profiledetailsviewform profiledetailsviewform, httpservletrequest request) { final httpheaders httpheaders= new httpheaders(); httpheaders.setcontenttype(mediatype.application_json); long start = system.currenttimemillis(); log.debug("fetching getprofileviewdetails.html info item started ..."); sowouser sowouser = null; recruitercandidates recruitercandidates = null; candidatesubmitted candidatesubmitted = null; long userid = null; long recruiterid = null; long companyid = null; string decriptuserid = null; jsonobject json = new jsonobject(); string encriptuserid =null; if(profiledetailsviewform!=null){ profiledetailsviewform.getencriptuserid(); }
Comments
Post a Comment