issues Search Results · language:Dune language:JavaScript language:Python language:JavaScript language:Java language:Java
Filter by
55.4M results
Context
With all the coupling issues in our monolith, should we consider breaking this into microservices?
Arguments For
- TaskService is too coupled to everything
- Scaling issues with the monolith ...
Description
The pom.xml includes mysql-connector-java (8.0.28) but the application uses H2 in-memory database. MySQL is not
configured or used.
!-- TODO: someone added mysql but we never use it in prod ...
Description
The pom.xml includes mysql-connector-java (8.0.28) but the application uses H2 in-memory database. MySQL is not
configured or used.
!-- TODO: someone added mysql but we never use it in prod ...
Description
The /api/tasks/search endpoint is vulnerable to SQL injection. The keyword parameter is directly concatenated into SQL
query string in DatabaseHelper.java.
Steps to Reproduce
1. Call GET ...
Description
No static code analysis tools are configured. Bugs, style violations, and potential issues are only caught during code
review (if at all).
Requirements
- Add SpotBugs Maven plugin for ...
Opportunity
The router in client/src/router/index.jsx has no catch-all (path: * ) route. Any URL that does not match a defined path
(a mistyped link, a stale bookmark, an old shared URL after a route ...
Description
No static code analysis tools are configured. Bugs, style violations, and potential issues are only caught during code
review (if at all).
Requirements
- Add SpotBugs Maven plugin for ...
Description
DatabaseHelper.java uses a lazy singleton pattern without synchronization:
private static Connection connection = null;
public static Connection getConnection() {
if (connection == null) ...
Description
There is no code coverage reporting configured. We have no visibility into which code is tested and which is not.
Requirements
- Add JaCoCo Maven plugin
- Generate coverage reports on ...
Description
There is no code coverage reporting configured. We have no visibility into which code is tested and which is not.
Requirements
- Add JaCoCo Maven plugin
- Generate coverage reports on ...

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.