오류 해결/PrismaORM

Nest can't resolve dependencies of the PostService (?). Please make sure that the argument PrismaService at index [0] is available in the AppModule context.

Zaein 2023. 3. 31. 15:42

prisma를 이용해 curd 중 create를 구현하다가

아무리 봐도 문제없이 잘한 것 같은데 npm start만 하면 엄청난 장문의 오류가 떴다.

 

오류:

ERROR [ExceptionHandler] Nest can't resolve dependencies of the PostService (?). Please make sure that the argument PrismaService at index [0] is available in the AppModule context.

 

Potential solutions:
- Is AppModule a valid NestJS module?
- If PrismaService is a provider, is it part of the current AppModule?
- If PrismaService is exported from a separate @Module, is that module imported within AppModule?
  @Module({
    imports: [ /* the Module containing PrismaService */ ]
  })

 

 

대체 뭐라는?

검색을 해도 정보가 몇개 없고

app.module.ts에 PostService를 넣으래서 봤더니 이미 잘 있음...

 

 

이런 경우~!

 

오히려 app.module.ts에 있는 PostService를 없애니까 잘 됐다!

import가 중복으로 두 군데에서 실행돼서 그런듯

 

 

참고 url:

https://stackoverflow.com/questions/56870498/nest-cant-resolve-dependencies-of-the-itemsservice-please-make-sure-that-t