Error 405 Method Not Allowed when sending a PUT AJAX request to Spring Boot with jQuery? – Jquery ajax
I'm getting 405 in console, when I send PUT request. Here is my ajax call, which is part of bigger function: triggerPutRequest(id, stringDate, isDone, title) .then((data) => { console.log(data); }) .catch((error) => { alert(error); }); function triggerPutRequest(isDone, id, stringDate, title)…