This article is a guide to implementing JWT authentication with Spring Boot. At a minimum, the client must exchange a username and password to obtain a JWT. This token is then used to authenticate subsequent API calls. The core workflows for securing APIs with JWT are: AJAX Login Authentication JWT Token Authentication Prerequisite See the linked GitHub repo for code. This project is using H2 in-m

