https://github.com/relson/agr-inv
Agregador de investimentos - Playlist do Canal Build & Run
https://github.com/relson/agr-inv
java spring-boot
Last synced: 3 months ago
JSON representation
Agregador de investimentos - Playlist do Canal Build & Run
- Host: GitHub
- URL: https://github.com/relson/agr-inv
- Owner: relson
- Created: 2025-01-14T19:51:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-16T20:19:31.000Z (over 1 year ago)
- Last Synced: 2025-01-16T21:28:46.864Z (over 1 year ago)
- Topics: java, spring-boot
- Language: Java
- Homepage: https://www.youtube.com/watch?v=Tnl4YnB6E54&list=PLxCh3SsamNs62j6T7bv6f1_1j9H9pEzkC
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# agr-inv
Agregador de investimentos - Playlist do Canal Build & Run
## Videos
- [`ADI 1` - Criando um CRUD com Java Spring Boot e MySQL](https://www.youtube.com/watch?v=Tnl4YnB6E54&list=PLxCh3SsamNs62j6T7bv6f1_1j9H9pEzkC) -
- [Spring Initi](https://start.spring.io/)
## Diagrama
```mermaid
classDiagram
class Investment {
+String name
+float value
+String type
+getValue()
+setValue(float value)
}
class Portfolio {
+String owner
+List~Investment~ investments
+addInvestment(Investment investment)
+removeInvestment(Investment investment)
+getTotalValue()
}
Portfolio --> Investment
```