SpringBoot REST API + JWT + Spring Security

Summary In this blog post, We will learn how to securing Spring boot REST API with Spring security and JWTs (JSON Web Tokens) if you are new to JWTs Token Please follow my previous blog post about What is JWT Token?. In this post, I used Already develope Spring Boot REST API from my previous … Continue reading SpringBoot REST API + JWT + Spring Security

How to Create REST API with Spring Boot

Summary In this blog post, we will learn how to create REST API with Spring Boot, JPA, Hibernate and MySQL. Create the Spring Boot Project. Define Database configurations. Create an Entity Class. Create JPA Data Repository layer. Create Rest Controllers and map API requests. Create Unit Testing for API requests and run the unit testing. … Continue reading How to Create REST API with Spring Boot

RESTful Web services Part 1

What is REST ?  REST is an Architectural Style, it's style of software architecture for distributed hypermedia systems such as World Wide Web. What is RESTful Web services ? RESTful Web services is an  Application of REST architectural style to services that utilize Web standards (URIs, HTTP, HTML, XML,  Atom, RDF etc.). This architecture style … Continue reading RESTful Web services Part 1