| REST API Best Practices: How to Use the Right HTTP Methods and Status Codes |
REST API best practices: how to use the correct HTTP methods and status codes in your APIs |
Published:
16 June 2022
Views: 4,995 0 comments |
|
| How to Use curl for Testing REST APIs (Test CRUD Operations) |
How to test REST APIs in command line/terminal using curl command and its options. curl examples for testing CRUD REST APIs. |
Published:
03 September 2022
Views: 3,705 0 comments |
|
| How to Use Postman for Testing REST APIs (Test CRUD Operations) |
A beginner guide to REST APIs testing using Postman - Test CRUD APIs (Create, Retrieve, Update and Delete). |
Published:
27 September 2022
Views: 3,125 0 comments |
|
| JSON Fields Order using Jackson @JsonPropertyOrder Examples |
Code examples using @JsonPropertyOrder to sort fields in a JSON object with Jackson library |
Published:
25 April 2023
Views: 2,130 0 comments |
|
| REST API with Spring: How to Prettify JSON Output |
How to format JSON output in API response with Spring MVC and Jackson library. Prettify JSON with proper indentation. |
Published:
20 September 2023
Views: 1,693 0 comments |
|
| How to set JSON property name in Java |
Code examples of using @JsonProperty to set custom property names in JSON object. Applied in Java Spring projects that use Jackson library. |
Published:
29 June 2023
Views: 1,532 0 comments |
|
| JSON Ignore Field in Response with Jackson @JsonIgnore Annotation |
Code examples of using @JsonIgnore annotation to ignore some fields in JSON response. Applied in Java Spring projects that use Jackson library. |
Published:
28 June 2023
Views: 1,524 0 comments |
|
| How to Decode JWTs and Verify Signature |
Guide to decode JWT (JSON Web Token) content using online JWT decoder tool, including verify JWT signature that is signed with secret key or public and private keys. |
Published:
03 October 2024
Views: 230 0 comments |
|
| JSON Web Token (JWT) for Beginners |
This article helps you easily understand the basics and fundamentals of JSON Web Token (JWT) in REST API development: what JWT is, where it is used, the structure of a JWT, and some Java libraries that support working with JWT. |
Published:
07 October 2024
Views: 189 0 comments |
|