File tree 1 file changed +1
-44
lines changed
1 file changed +1
-44
lines changed Original file line number Diff line number Diff line change 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
- ```
1
+ # The source code of this project is upgraded to Spring Boot 3.2.1 and jwt 0.12.3
45
2
46
3
# Source code of Bestseller Udemy Course - Building Real-Time REST APIs with Spring Boot
47
4
Learn how to build real-time REST APIs with Spring Boot by building a complete Blog App.
You can’t perform that action at this time.
0 commit comments