1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【NestJS】Module間でDIを実装する方法

Last updated at Posted at 2021-09-28

はじめに

前回の記事でModule内のServiceとRepositoryのDIについて触れたので、今回はModule間でのDIについてまとめました。

実装

以下のように複数のModuleで構成されたアプリケーションがあった場合、別のModuleからServiceを呼び出すためにどのような実装をすればよいかを考えます。
スクリーンショット 2021-09-27 22.26.04.png

プロジェクト作成

プロジェクトおよび今回必要となるModule、Service、Controllerを作成します。

$ nest new di
$ nest g module computer
$ nest g module cpu
$ nest g module disk
$ nest g module power
$ nest g service cpu
$ nest g service disk
$ nest g service power
$ nest g controller computer

Module間でのDI

Module内のServiceとRepository間のDIは、それぞれに@Injectable()デコレータを付加して、ModuleのprovidersにServiceとRepositoryを登録するだけで実装することができました。

一方、別のModule間のService同士でDIを行うには、別の手順を踏む必要があります。
下図を例にすると以下のようになります。

スクリーンショット 2021-09-28 21.21.14.png

1. 呼び出される側のModule(PowerModule)のexportsにService(PowerService)を登録する

power.module.ts
import { Module } from '@nestjs/common';
import { PowerService } from './power.service';

@Module({
  providers: [PowerService],
  exports: [PowerService],
})
export class PowerModule {}

2. 呼び出す側のModule(CpuModule)のimportsに1のModule(PowerModule)を登録する

cpu.module.ts
import { Module } from '@nestjs/common';
import { PowerModule } from 'src/power/power.module';
import { CpuService } from './cpu.service';

@Module({
  imports: [PowerModule],
  providers: [CpuService],
})
export class CpuModule {}

3. 呼び出す側のService(CpuService)のconstructorで呼び出される側のService(PowerService)を定義する

cpu.service.ts
import { Injectable } from '@nestjs/common';
import { PowerService } from 'src/power/power.service';

@Injectable()
export class CpuService {
  constructor(private powerService: PowerService) {}

  compute(a: number, b: number) {
    console.log('Drawing 10 watts of power from Power Service');
    this.powerService.supplyPower(10);
    return a + b;
  }
}

PowerModuleとCpuModuleのDIコンテナを図にすると以下のようになります。

スクリーンショット 2021-09-28 21.51.55.png

CpuModuleでPowerModuleをインポートすることで、PowerModuleのDIコンテナに登録されたリスト(ServiceやServiceとdependencyの関係)がCpuModuleのDIコンテナに登録されます。
NestではModule間のDIがこのようにして行われます。

参考資料

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?