Created
January 7, 2019 13:18
-
-
Save apalyukha/3d8478110a5c755f0841c901fcb06bee to your computer and use it in GitHub Desktop.
Spring Boot REST: test rest methods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// GET all | |
fetch('/message/').then(response => response.json().then(console.log)) | |
// GET one | |
fetch('/message/2').then(response => response.json().then(console.log)) | |
// POST add new one | |
fetch( | |
'/message', | |
{ | |
method: 'POST', | |
headers: { 'Content-Type': 'application/json' }, | |
body: JSON.stringify({ text: 'Fourth message (4)', id: 10 }) | |
} | |
).then(result => result.json().then(console.log)) | |
// PUT save existing | |
fetch( | |
'/message/4', | |
{ | |
method: 'PUT', | |
headers: { 'Content-Type': 'application/json' }, | |
body: JSON.stringify({ text: 'Fourth message', id: 10 }) | |
} | |
).then(result => result.json().then(console.log)); | |
// DELETE existing | |
fetch('/message/4', { method: 'DELETE' }).then(result => console.log(result)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment