Skip to content

Spring Boot & Angular Boilerplate mit JWT Authentifizierung für den Bau weiterer Projekte

License

Notifications You must be signed in to change notification settings

DavAlbert/spring-boot-angular-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spring-boot-angular-boilerplate

Das Projekt beinhaltet:

  • Login
  • Registrierung
  • JWT Authentifizierung
  • Übersichtsseite
  • Benutzer Rollen

Java version: 11 Folgendes muss auf dem Host installiert werden: NodeJS (NPM), Maven, NGINX

Installation

$ git clone https://github.com/DavAlbert/spring-boot-angular-boilerplate.git --depth 1
$ cd spring-boot-angular-boilerplate
$ mvn clean install
$ cd angular-client
$ npm install

NGINX Konfiguration

server {
    listen       80;
    server_name  localhost;
    location ^~ / {
        proxy_pass http://127.0.0.1:4200/;
    }
location ^~ /api/ {
        proxy_pass http://127.0.0.1:8080/;
    }

}

Login per REST Call

restLogin

Registrierung per REST Call

restRegister

Nutzer Infos per REST Call

userInfos

Login Web-Interface

loginInterface

Login Web-Interface (Falsches Passwort)

loginInterfaceWrong

Registrierung Web-Interface

registerInterface

Übersicht Web-Interface

overviewInterface

Mit diesem Boilerplate können Angular 7 & Spring Boot Web Projekte erzeugt werden.

About

Spring Boot & Angular Boilerplate mit JWT Authentifizierung für den Bau weiterer Projekte

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •