Skip to content

Commit 3f9ce85

Browse files
committed
add references
1 parent 76f7085 commit 3f9ce85

5 files changed

+30
-13
lines changed

README.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
# Spring Boot JWT Authentication example with Spring Security & Spring Data JPA
22

3+
## User Registration, User Login and Authorization process.
4+
The diagram shows flow of how we implement User Registration, User Login and Authorization process.
5+
6+
![spring-boot-jwt-authentication-spring-security-flow](spring-boot-jwt-authentication-spring-security-flow.png)
7+
8+
## Spring Boot Server Architecture with Spring Security
9+
You can have an overview of our Spring Boot Server with the diagram below:
10+
11+
![spring-boot-jwt-authentication-spring-security-architecture](spring-boot-jwt-authentication-spring-security-architecture.png)
12+
313
For more detail, please visit:
414
> [Secure Spring Boot App with Spring Security & JWT Authentication](https://bezkoder.com/spring-boot-jwt-authentication/)
515
616
> [For MongoDB](https://bezkoder.com/spring-boot-jwt-auth-mongodb/)
717
8-
# Fullstack
18+
## Fullstack Authentication
919

1020
> [Spring Boot + Vue.js JWT Authentication](https://bezkoder.com/spring-boot-vue-js-authentication-jwt-spring-security/)
1121
@@ -15,6 +25,18 @@ For more detail, please visit:
1525
1626
> [Spring Boot + React JWT Authentication](https://bezkoder.com/spring-boot-react-jwt-auth/)
1727
28+
## Fullstack CRUD App
29+
30+
> [Vue.js + Spring Boot + MySQL/PostgreSQL example](https://bezkoder.com/spring-boot-vue-js-crud-example/)
31+
32+
> [Angular + Spring Boot + MySQL example](https://bezkoder.com/angular-10-spring-boot-crud/)
33+
34+
> [Angular + Spring Boot + PostgreSQL example](https://bezkoder.com/angular-10-spring-boot-postgresql/)
35+
36+
> [React + Spring Boot + MySQL example](https://bezkoder.com/react-spring-boot-crud/)
37+
38+
> [React + Spring Boot + PostgreSQL example](https://bezkoder.com/spring-boot-react-postgresql/)
39+
1840
Run both Back-end & Front-end in one place:
1941
> [Integrate Angular with Spring Boot Rest API](https://bezkoder.com/integrate-angular-spring-boot/)
2042

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
</dependency>
3737

3838
<dependency>
39-
<groupId>org.postgresql</groupId>
40-
<artifactId>postgresql</artifactId>
39+
<groupId>mysql</groupId>
40+
<artifactId>mysql-connector-java</artifactId>
4141
<scope>runtime</scope>
4242
</dependency>
4343

@@ -52,7 +52,7 @@
5252
<artifactId>spring-boot-starter-test</artifactId>
5353
<scope>test</scope>
5454
</dependency>
55-
55+
5656
<dependency>
5757
<groupId>org.springframework.security</groupId>
5858
<artifactId>spring-security-test</artifactId>
Loading
Loading

src/main/resources/application.properties

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
2-
spring.datasource.url= jdbc:postgresql://localhost:5432/testdb
3-
spring.datasource.username= postgres
4-
spring.datasource.password= 123
1+
spring.datasource.url= jdbc:mysql://localhost:3306/testdb?useSSL=false
2+
spring.datasource.username= root
3+
spring.datasource.password= 123456
54

6-
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation= true
7-
# The SQL dialect makes Hibernate generate better SQL for the chosen database
8-
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect
9-
10-
# Hibernate ddl auto (create, create-drop, validate, update)
5+
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQL5InnoDBDialect
116
spring.jpa.hibernate.ddl-auto= update
127

138
# App Properties

0 commit comments

Comments
 (0)