Go to file
bezkoder b95d4719ea
update links for fullstack
2020-01-18 10:05:24 +07:00
.mvn/wrapper first commit 2020-01-09 22:00:22 +07:00
src first commit 2020-01-09 22:00:22 +07:00
.gitignore first commit 2020-01-09 22:00:22 +07:00
README.md update links for fullstack 2020-01-18 10:05:24 +07:00
mvnw first commit 2020-01-09 22:00:22 +07:00
mvnw.cmd first commit 2020-01-09 22:00:22 +07:00
pom.xml first commit 2020-01-09 22:00:22 +07:00

README.md

Spring Boot JWT Authentication example with Spring Security & PostgreSQL

For more detail, please visit:

Secure Spring Boot App with Spring Security & JWT Authentication

Fullstack

Spring Boot + Vue.js JWT Authentication

Spring Boot + Angular 8 JWT Authentication

Run Spring Boot application

mvn spring-boot:run

Run following SQL insert statements

INSERT INTO roles(name) VALUES('ROLE_USER');
INSERT INTO roles(name) VALUES('ROLE_MODERATOR');
INSERT INTO roles(name) VALUES('ROLE_ADMIN');