axios POST request is hitting the url on the controller but setting null values to my POJO class, when I go through developer tools in chrome, the payload conta
POST
Even More straightforward:
axios.post('/addUser',{ userName: 'Fred', userEmail: 'Flintstone@gmail.com' }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });