Skip to content

Commit 7046621

Browse files
authored
Merge pull request #6 from RameshMF/RameshMF-patch-2
Update README.md
2 parents 10b214f + a33319d commit 7046621

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

Diff for: README.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
# The source code of this project is upgraded to spring boot 3.2.1 and jwt 0.12.3
2+
You can find the changes in the latest commit:
3+
https://github.com/RameshMF/springboot-blog-rest-api/commit/10b214fd898ea8e4270a178e59eca86dddedaa5b
4+
5+
## Change in the SpringSecurity config class
6+
Removed deprecated csrf() method:
7+
```
8+
http.csrf(csrf -> csrf.disable())
9+
```
10+
## Changed spring Boot version:
11+
From:
12+
```
13+
<version>3.0.0</version>
14+
```
15+
To:
16+
```
17+
<version>3.2.1</version>
18+
```
19+
## Changed MySQL driver name:
20+
```
21+
<dependency>
22+
<groupId>com.mysql</groupId>
23+
<artifactId>mysql-connector-j</artifactId>
24+
<scope>runtime</scope>
25+
</dependency>
26+
```
27+
## Changed JWT dependencies version:
28+
From:
29+
```
30+
<version>0.11.5</version>
31+
```
32+
To:
33+
```
34+
<version>0.12.3</version>
35+
```
36+
# Changed the method from parserBuilder() to parser() in JwtTokenProvider
37+
From:
38+
```
39+
Jwts.parserBuilder()
40+
```
41+
To:
42+
```
43+
Jwts.parser()
44+
```
45+
146
# Source code of Bestseller Udemy Course - Building Real-Time REST APIs with Spring Boot
247
Learn how to build real-time REST APIs with Spring Boot by building a complete Blog App.
348

0 commit comments

Comments
 (0)