Соединение «по умолчанию» не было найдено с TypeORM при попытке запросить репозиторий - PullRequest
0 голосов
/ 05 августа 2020

Я создаю API с помощью Express + TypeORM. Это мой ormconfig. json:

{
  "type": "postgres",
  "host": "localhost",
  "port": "5432",
  "username": "mdsp9070",
  "password": "mdsp9070",
  "database": "mesha",
  "entities": ["./src/entities/*.ts"],
  "migrations": ["./src/shared/infra/typeorm/migrations/*.ts"],
  "cli": {
    "migrationsDir": "./src/shared/infra/typeorm/migrations"
  }
}

И моя сущность определяется как:

import {
  Entity,
  Column,
  PrimaryGeneratedColumn,
} from "typeorm";

@Entity("users")
export class User {
  @PrimaryGeneratedColumn("uuid")
  id: string;

  @Column()
  name: string;

  @Column()
  email: string;

  @Column()
  birthYear: string;

  @Column()
  phoneNumber: string;

  @Column()
  photo: string;
}

В моем CreateUserUseCase я называю этот репозиторий как:

...
private usersRepository: IUsersRepository;
  // receives ormRepository, that's users repository
  constructor() {
    this.usersRepository = getCustomRepository(UsersRepository);
  }
...

, но я получаю эту ошибку: [ERROR] 13:08:39 ConnectionNotFoundError: Connection "default" was not found.

Нет, соединение не вызывается после getCustomRepository, поскольку я вызываю файл в индексе моего сервера.

полное репозиторий github : https://github.com/Mdsp9070/mesha

1 Ответ

0 голосов
/ 05 августа 2020

Пояснение: Express маршруты были вызваны до установления соединения! Поэтому я решил использовать динамический c импорт.

Основная запись моего приложения была изменена на typeorm / index.ts как:

import { createConnection } from "typeorm";
import { AppError } from "../../errors/AppError";

// finds ormconfig.json file and creates a connection. (magic!),
// it could be set up manually with parameters
// however an external file is the best practise
createConnection()
  .then(() => {
     console.log("Connected to the database")
     import("../../http/server.ts")
  })
  .catch(() => new AppError("Unable to connect to the database"));

Таким образом, это сработало как шарм!

...