-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLLD-Overview.txt
42 lines (42 loc) · 1.66 KB
/
LLD-Overview.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
+---------------------+ +-----------------------+
| Angular Frontend | | Security Layer |
| | | (Spring Security, |
| - User Login | ----> | JWT Authentication) |
| - Transaction Mgmt | +-----------------------+
| - Budget Tracking |
+---------------------+
|
v
+-------------------------------------+
| Spring Boot Backend |
| |
| +-------------------------------+ |
| | Controller Layer | |
| | - Handles API requests | |
| | - Validates user inputs | |
| +-------------------------------+ |
| | |
| v |
| +-------------------------------+ |
| | Service Layer | |
| | - Business logic | |
| | - Manages transactions | |
| | - Handles categories, budget | |
| +-------------------------------+ |
| | |
| v |
| +-------------------------------+ |
| | Repository Layer | |
| | - Uses JPA for database ops | |
| | - MySQL interaction | |
| +-------------------------------+ |
+-------------------------------------+
|
v
+---------------------+ +-----------------------+
| MySQL | | Utilities |
| - Users Table | | - Password Encoder |
| - Transactions | | - Logging |
| - Categories | | - Exception Handler |
| - Budgets | +-----------------------+
+---------------------+