Tag: spring boot basic authentication
Spring Boot + Spring Security – RESTful Web Service with basic Authentication
by  Java4s | 5 Comments
  [ Ask Question ]
In this article, I am going to explain you how to implement basic authentication for RESTful web services using Spring Boot and Spring Security. We will need to create a java file with spring security configurations in it, that’s…
Spring Boot + Spring Security – RESTful Web Service with Database Authentication
by  Java4s | 5 Comments
  [ Ask Question ]
This article describes how to implement database authentication for your RESTful web services using Spring Boot and Spring Security. Let me start with the required dependencies.. Dependencies <!– Related to Database –> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId>…