2020-02-17 18:56:01 -05:00
|
|
|
|
# Spring Boot JWT Authentication example with Spring Security & Spring Data JPA
|
2019-10-15 12:08:57 -04:00
|
|
|
|
|
|
|
|
|
For more detail, please visit:
|
|
|
|
|
> [Secure Spring Boot App with Spring Security & JWT Authentication](https://bezkoder.com/spring-boot-jwt-authentication/)
|
|
|
|
|
|
2020-02-23 20:58:05 -05:00
|
|
|
|
> [For MongoDB](https://bezkoder.com/spring-boot-jwt-auth-mongodb/)
|
|
|
|
|
|
2020-01-17 22:05:24 -05:00
|
|
|
|
# Fullstack
|
|
|
|
|
|
|
|
|
|
> [Spring Boot + Vue.js JWT Authentication](https://bezkoder.com/spring-boot-vue-js-authentication-jwt-spring-security/)
|
|
|
|
|
|
|
|
|
|
> [Spring Boot + Angular 8 JWT Authentication](https://bezkoder.com/angular-spring-boot-jwt-auth/)
|
|
|
|
|
|
2020-04-01 06:03:27 -04:00
|
|
|
|
> [Spring Boot + React JWT Authentication](https://bezkoder.com/spring-boot-react-jwt-auth/)
|
|
|
|
|
|
2020-02-17 18:56:01 -05:00
|
|
|
|
## Dependency
|
|
|
|
|
– If you want to use PostgreSQL:
|
|
|
|
|
```xml
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
```
|
|
|
|
|
– or MySQL:
|
|
|
|
|
```xml
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
```
|
|
|
|
|
## Configure Spring Datasource, JPA, App properties
|
|
|
|
|
Open `src/main/resources/application.properties`
|
|
|
|
|
- For PostgreSQL:
|
|
|
|
|
```
|
|
|
|
|
spring.datasource.url= jdbc:postgresql://localhost:5432/testdb
|
|
|
|
|
spring.datasource.username= postgres
|
|
|
|
|
spring.datasource.password= 123
|
|
|
|
|
|
|
|
|
|
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation= true
|
|
|
|
|
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect
|
|
|
|
|
|
|
|
|
|
# Hibernate ddl auto (create, create-drop, validate, update)
|
|
|
|
|
spring.jpa.hibernate.ddl-auto= update
|
2020-01-17 22:05:24 -05:00
|
|
|
|
|
2020-02-17 18:56:01 -05:00
|
|
|
|
# App Properties
|
|
|
|
|
bezkoder.app.jwtSecret= bezKoderSecretKey
|
|
|
|
|
bezkoder.app.jwtExpirationMs= 86400000
|
|
|
|
|
```
|
|
|
|
|
- For MySQL
|
|
|
|
|
```
|
|
|
|
|
spring.datasource.url= jdbc:mysql://localhost:3306/testdb?useSSL=false
|
|
|
|
|
spring.datasource.username= root
|
|
|
|
|
spring.datasource.password= 123456
|
|
|
|
|
|
|
|
|
|
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQL5InnoDBDialect
|
|
|
|
|
spring.jpa.hibernate.ddl-auto= update
|
|
|
|
|
|
|
|
|
|
# App Properties
|
|
|
|
|
bezkoder.app.jwtSecret= bezKoderSecretKey
|
|
|
|
|
bezkoder.app.jwtExpirationMs= 86400000
|
|
|
|
|
```
|
2019-10-15 12:08:57 -04:00
|
|
|
|
## 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');
|
2020-01-17 22:05:24 -05:00
|
|
|
|
```
|