JEndpoint
A Visual Studio Code extension for testing Java endpoints quickly and efficiently.
Features
- Send HTTP requests to Java endpoints directly from VS Code.
- Supports GET, POST, PUT, DELETE methods.
- Customize request headers and body.
- Clear response visualization (status, headers, body).
- Easy-to-configure endpoint management.
How to Use
- Install the extension in Visual Studio Code.
- Open the Command Palette (
Ctrl+Shift+P or Cmd+Shift+P ) and search for Test Endpoint .
- Create an
endpoints.json file in the root of your project to define your endpoints.
- Run requests directly from VS Code and view the responses in the output panel.
Configuration
Create an endpoints.json file in the root of your project with the following structure:
[
{
"name": "Example Endpoint",
"url": "http://localhost:8080/api",
"method": "GET",
"headers": {
"Authorization": "Bearer token"
},
"body": {
"key": "value"
}
}
]
| |