Skip to main content
0 votes
3 answers
148 views

Say I have this interface: public interface IExample { string GetSupportedExtension(); void DoWork(Stream input); } a concrete implementation like: public class PdfExample : IExample { ...
Kiblinix's user avatar
1 vote
0 answers
99 views

I have two abstract classes with mutual dependencies to represent versionable entities : The version class : import type { VersionableEntity } from './versionable.entity.js'; export abstract class ...
Guillaume Tisserant's user avatar
9 votes
2 answers
589 views

My game engine in C++ using modules from C++20. class A contains unique_ptr of class B, class B contains regular pointer to class A and unique_ptr to class C, and this structure continues for 4 levels ...
Work Steve's user avatar
2 votes
1 answer
88 views

I am trying to create a sort of complex react/jotai game with a next.js frontend server router connected to an express/node.js backend server. I keep getting circular dependency issues. I tried using ...
OkayGift's user avatar
0 votes
1 answer
46 views

I'm new to NestJS and currently facing a circular dependency issue between two modules: InvoicesModule and TransactionsModule. Both modules depend on each other, so I tried resolving it using ...
M Hamza Mughal's user avatar
0 votes
0 answers
39 views

I'm building a backend application using NestJS, and everything was working smoothly. Recently, I added a new module and attempted to use services from existing modules within it. However, after ...
Naceur Kheder's user avatar
0 votes
0 answers
60 views

So i have some flask code, two files affected one is flask_app.py and the other one is routes.py. The error thrown were ranging from Error running WSGI application 2025-03-16 23:05:30,980: ...
Vikt Vik's user avatar
2 votes
4 answers
157 views

I have a postgress table incoming_records which contains 2 column supervisor_id, emp_id create table incoming_records(supervisor_id,emp_id)as values (null,01) --top level resources with blank ...
GD_Java's user avatar
  • 1,471
0 votes
0 answers
24 views

jakarta.servlet.ServletException: Circular view path [error]: would dispatch back to the current handler URL [/error] again. Check your ViewResolver setup! (Hint: This may be the result of an ...
Swati Jha's user avatar
1 vote
1 answer
71 views

I am developing part of an application where we have some custom built generic components. One of these component is a GenericForm which we use for easily creating forms, and another component is ...
Ciro García's user avatar
3 votes
0 answers
128 views

I'm facing an issue in my NestJS application where the onModuleInit lifecycle hook is not being executed in one of my services (JobsService) when a circular dependency is involved. Specifically: ...
Mohammed Saeed's user avatar
0 votes
0 answers
60 views

When I am triying to generate migrations I get this error Error during migration generation: Error: Unable to open file: "/home/angel/Contenedores/nestjs/plantilla/src/database/config/typeorm....
Angel Sebastin Saravia Serpas's user avatar
0 votes
0 answers
24 views

I'm trying to avoid circular import at my Flask app (based on oracledb), but get "RuntimeError: Database pool not initialized". How can I properly handle the DB pool creation (create without ...
user2312787's user avatar
-1 votes
2 answers
174 views

My project is created using Vue, Vite and Pinia. I used options api for communication in my project. I want to know the tips that I should follow to never face this problem so that I can always use it ...
MOHAMMAD HASHEMI's user avatar
0 votes
1 answer
249 views

I'm working on building an API for a small hackathon project. It will be a platform for teachers to share lesson plans for students. I created my first table, Subject, to store lesson subjects like ...
Allison's user avatar
  • 41

15 30 50 per page
1
2 3 4 5
126