/** * Performs connection to the database. * This method should be called once on application bootstrap. * This method not necessarily creates database connection (depend on database type), * but it also can setup a connection pool with database to use. */ asyncinitialize(): Promise<this> { if (this.isInitialized) thrownewCannotConnectAlreadyConnectedError(this.name)
// connect to the database via its driver awaitthis.driver.connect()
// connect to the cache-specific database if cache is enabled if (this.queryResultCache) awaitthis.queryResultCache.connect()
// set connected status for the current connection ObjectUtils.assign(this, { isInitialized: true })
try { // build all metadatas registered in the current connection awaitthis.buildMetadatas() // 主要是把定义 entity class 编译成metadata
awaitthis.driver.afterConnect()
// if option is set - drop schema once connection is done if (this.options.dropSchema) awaitthis.dropDatabase()
// if option is set - automatically synchronize a schema if (this.options.migrationsRun) awaitthis.runMigrations({ transaction: this.options.migrationsTransactionMode, })
// if option is set - automatically synchronize a schema if (this.options.synchronize) awaitthis.synchronize() // 根据编译出来的 metadata 自动建表 } catch (error) { // if for some reason build metadata fail (for example validation error during entity metadata check) // connection needs to be closed awaitthis.destroy() throw error }