0% found this document useful (0 votes)
84 views

Implementing Basic Authentication With Spring Security

This document discusses implementing basic authentication with Spring Security for RESTful web services. It describes basic authentication as sending a username and password with each request to access resources. It provides steps to add the Spring Security dependency, start the server to generate a password, and use that password in the Postman REST client with the basic authentication header to successfully send requests.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views

Implementing Basic Authentication With Spring Security

This document discusses implementing basic authentication with Spring Security for RESTful web services. It describes basic authentication as sending a username and password with each request to access resources. It provides steps to add the Spring Security dependency, start the server to generate a password, and use that password in the Postman REST client with the basic authentication header to successfully send requests.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

7/31/22, 3:07 PM Implementing Basic Authentication with Spring Security - javatpoint

Implementing Basic Authentication with Spring


Security
In the previous steps, we have created some resources, but none of them is secure yet. There is no
user id and password to access the resources. In this section, we will implement basic
authentication.

There are multiple ways to authenticate our RESTful web services. The basic way is to use basic
authentication. In the basic authentication, we send a username and password as part of our
request. When we provide a username and password, it allows us to access the resource.

There are other advanced forms of authentication like digest authentication, where the password
digest is created, and the digest is sent across. It does not send the actual password to the server.
The other advanced form of authentication is OAuth (Open Authorization) or OAuth2
authentication.

Let's see how to implement basic authentication in web services.

Step 1: Open pom.xml and add the spring-boot-starter-security. It automatically configures the


basic security for us.

<dependency>  
<groupId>org.springframework.boot</groupId>  
<artifactId>spring-boot-starter-security</artifactId>  
</dependency>  

Step 2:  Restart the server, we get a  password  in the log. Each time the server starts up the
password will be different.

https://www.javatpoint.com/restful-web-services-basic-authentication-with-spring-security 1/2
7/31/22, 3:07 PM Implementing Basic Authentication with Spring Security - javatpoint

Step 3: Copy the password from the log.

Step 4: Open the REST Client Postman and send a POST request. We are sending a POST to create
a user.

Provide URI http://localhost:8080/users.

Click on the Body tab and select the raw radio button.

Select the media type JSON (application/json).

Provide name and dob.

Click on the Send button.

It returns the Status: 401 Unauthorized.

Step 5: In the REST client Postman, click on the Authorization tab and do the following:

Select the type of authentication Basic Auth.

Provide the Username. The default username is user.

Paste the password, which we have copied from the log.

Click on the Send button.

https://www.javatpoint.com/restful-web-services-basic-authentication-with-spring-security 2/2

You might also like