You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 2, 2024. It is now read-only.
A few of our services take a List from the repository and stream them to perform operations on the data. We should restructure the database calls to return streams instead to keep from doing unneeded translations and keep the data structure closer to what JDBC uses to fetch the data.
A couple points of interest are line 73 in TeamService.java and line 67 in BoardService.java.
Notes
We are also returning a lot of Entities back over the wire. We should set up DTOs for them instead.
Restructure Some Database Fetch Calls
A few of our services take a List from the repository and stream them to perform operations on the data. We should restructure the database calls to return streams instead to keep from doing unneeded translations and keep the data structure closer to what JDBC uses to fetch the data.
A couple points of interest are line 73 in TeamService.java and line 67 in BoardService.java.
Notes
We are also returning a lot of Entities back over the wire. We should set up DTOs for them instead.