Skip to content

Spring Security 5 with OAuth2/OIDC and Auth0 integration example

License

Notifications You must be signed in to change notification settings

hantsy/spring-security-auth0-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Security 6 and Auth0 Integration sample

build

What is this?

This is a sample project demos how to use Auth0 IDP service to protect the RESTful APIs written in Spring WebMVC.

If you are interested in the custom JWT authentication with the Spring WebMvc stack, check spring-webmvc-jwt-sample for more details.

If you are interested in the custom JWT authentication with the Spring WebFlux stack, check spring-reactive-jwt-sample for more details.

Guide

Prerequisites

Make sure you have installed the following software.

  • Java 17 +
  • Apache Maven 3.x
  • Docker

Build

Clone the source codes from Github.

git clone https://github.com/hantsy/spring-security-auth0-sample

Open a terminal, and switch to the root folder of the project, and run the following command to build the whole project.

docker-compose up postgres // start up a postgres
mvn clean install // build the project

Run the application.

mvn spring-boot:run
// or from command line after building
java -jar target/xxx.jar

Contribution

Any suggestions are welcome, filing an issue or submitting a PR is also highly recommended.

References