GithubHelp home page GithubHelp logo

spring-boot-jwt-multiple-auth-startup-project-example's Introduction

Spring-Boot-JWT-multiple-auth-provider-startup-project-example

Example project for JWT authentication with Spring Boot and Spring Security. It can be used as an ad hoc template for the creation of a Spring Boot project that requires one or more authentication providers.

In the example we use the classic authentication provider based on username and password. There is also an example of a custom authentication provider (e.g. integration with external authentication systems via API).

How to use

  1. Install MySQL server
  2. Create a "jwtexample" database
  3. Create the example tables
CREATE TABLE `custom_user` (
	`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
	`email` VARCHAR(100) NOT NULL,
	`name` VARCHAR(50) NOT NULL,
	`password` VARCHAR(100) NOT NULL,
	PRIMARY KEY (`id`),
	UNIQUE INDEX `UQ_custom_user` (`email`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB;


CREATE TABLE `movie` (
	`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
	`title` VARCHAR(100) NOT NULL,
	`author` VARCHAR(100) NOT NULL,
	PRIMARY KEY (`id`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB;
  1. Edit application.yml file (path src/main/resources) with your database details
  2. Import the project using your favourite IDE as a maven project
  3. Install lombok plugin into your IDE (see: https://www.baeldung.com/lombok-ide)
  4. Start JwtexampleApplication with your JDK

Project info

This project has been tested with these versions:

Spring Boot 2.3.4

Java version 11.0.5

Apache Maven 3.6.3

MySQL server 8.0.18

spring-boot-jwt-multiple-auth-startup-project-example's People

Contributors

scarrozzo avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.