HTTP Basic Authentication Sample

Furkan Topal
May 26, 2021

Sample Spring Boot project to show how to make Http Basic Authentication.

Used External Libraries:

HttpClient

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>

JAXB

<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.3</version>
</dependency>

<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.3</version>
<scope>runtime</scope>
</dependency>

ClientImpl.java

ConsumerImpl.java

Source code can be found on GitHub:

--

--