Open Issues Need Help
View All on GitHubAI Summary: Implement JWT authentication using Spring Security in a Spring Boot investment management application. This involves creating a login endpoint to generate JWT tokens after verifying user credentials (email and password), securing application routes using Spring Security, and handling authentication using a custom JWT filter. Password encryption using BCryptPasswordEncoder is also required.
Um projeto em Spring Boot para gerenciar investimentos
AI Summary: Implement the backend logic for managing investment portfolios and assets. This involves creating Spring Data JPA repositories, services with business logic, and REST controllers for CRUD operations on Portfolio and Asset entities. The task includes creating endpoints for portfolio creation and retrieval, and asset addition, listing, updating, and deletion.
Um projeto em Spring Boot para gerenciar investimentos
AI Summary: Implement the Portfolio and Asset entities in a Spring Boot investment management application. This involves creating database entities with a one-to-one relationship between User and Portfolio, and a one-to-many relationship between Portfolio and Asset. Repositories, services, and REST endpoints for managing portfolios and assets are also required. The Asset entity should support various asset types (stocks, FIIs, crypto, etc.) in an extensible way.
Um projeto em Spring Boot para gerenciar investimentos
AI Summary: Integrate the Brapi.dev API into a Spring Boot application to fetch stock, ETF, and FII quotes. This involves creating a `BrapiClient` using Spring WebClient, implementing a `buscarCotacao` method to retrieve quote data via GET request to `/quote/{ticker}`, and creating a `CotacaoService` and `CotacaoController` to handle the API interaction and expose a REST endpoint.
Um projeto em Spring Boot para gerenciar investimentos