我将TypeORM与NestJS一起使用,我无法正确保存实体。
连接创建工作,postgres在5432端口上运行。凭证也可以。
但是当我需要使用entity.save()保存资源时,我得到了:
Connection "default" was not found.
Error
at new ConnectionNotFoundError (/.../ConnectionNotFoundError.ts:11:22)
我检查了TypeORM ConnectionManager(https://github.com/typeorm/typeorm/blob/master/src/connection/ConnectionManager.ts)的源文件,但似乎TypeORM第一次创建连接时,如果我们不提供“默认”名称,则属于“默认”名称,这就是我的情况。< / p>
我使用TypeOrmModule将TypeORM设置为
TypeOrmModule.forRoot({
type: config.db.type,
host: config.db.host,
port: config.db.port,
username: config.db.user,
password: config.db.password,
database: config.db.database,
entities: [
__dirname + '/../../dtos/entities/*.entity.js',
]
})
当然我的常数是正确的。有什么想法吗?
答案 0 :(得分:10)
您正在尝试在未建立连接的情况下创建存储库或管理器。
尝试在函数中执行此const shopkeeperRepository = getRepository(Shopkeeper);
。它会起作用
答案 1 :(得分:3)
我们正在使用 lerna
并使用包 A
中库 B
中的代码。
问题是每个包中的两个 TypeOrm 版本都不同。
解决方案是确保您在每个软件包中安装的版本完全相同。
为了安全起见,删除您的 node_modules
目录并使用 yarn install
或 npm install
重新安装所有内容
检查您的 yarn.lock
是否有多个 typeorm
条目,并确保只有一个。
答案 2 :(得分:1)
建议的答案不一定正确,如果您未指定连接名称,则默认为“默认”。
const manager = getConnectionManager().get('your_orm_name');
const repository = manager.getRepository<AModel>(Model);
答案 3 :(得分:1)
如果有人通过getRepository()
使用Express Router,请检查以下代码
const router = Router();
router.get("/", async function (req: Request, res: Response) {
// here we will have logic to return all users
const userRepository = getRepository(User);
const users = await userRepository.find();
res.json(users);
});
router.get("/:id", async function (req: Request, res: Response) {
// here we will have logic to return user by id
const userRepository = getRepository(User);
const results = await userRepository.findOne(req.params.id);
return res.send(results);
});
只需确保在每条路线上都呼叫getRepository()
,就像Saras Arya在接受的答案中所说的那样即可。
答案 4 :(得分:1)
如果将来有人遇到此问题,请检查一下以防万一:
我不小心做了“ user.save()”而不是“ userRepo.save(user)”。
(当然,在上面这样初始化连接:
const userRepo = getConnection(process.env.NODE_ENV).getRepository(User))
答案 5 :(得分:0)
对于那些正在寻找其他答案的人,请检查一下。
就我而言,问题是因为我在数据库配置中传递了name
。
export const dbConfig = {
name: 'myDB',
...
}
await createConnection(dbConfig) // like this
结果,唯一知道的连接服务器是myDB
而不是default
。
同时,在我的服务中,注入的存储库中没有name
,这将回退到default
。 (服务将因此寻找default
连接)
@Service() // typedi
export class Service {
constructor(
// inject without name -> fallback to default
@InjectRepository() private readonly repository
) {}
}
作为修复,我删除了数据库配置中的name
属性。
或者您也可以像myDB
一样,将InjectRepository
作为@InjectRepository('myDB')
的参数来传递,无论哪种方式都可以。
答案 6 :(得分:0)
在不同环境下使用getConnectionOptions
时出现此错误。使用一个数据库进行开发,使用另一个数据库进行测试。这是我解决的方法:
const connectionOptions = await getConnectionOptions(process.env.NODE_ENV);
await createConnection({...connectionOptions, name:"default"});
我使用getConnectionOptions
获取当前环境的连接,为了成功完成此连接,您必须将ormconfig.json
更改为一个数组,并使用键“ name”包含所需的不同环境,像这样:
[
{
"name" : "development",
"type": "USER",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "PASS",
"database": "YOURDB"
},
{
"name" : "test",
"type": "USERTEST",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "PASSTEST",
"database": "YOURDBTEST"
}
]
现在connectionOptions
将包含当前环境的连接参数,但是将其加载到createConnection
会抛出您指出的错误。将connectionOptions
名称更改为“默认”可解决此问题。
答案 7 :(得分:0)
我按照以下方法创建Database
类。如果连接不存在,则创建连接,否则返回现有连接。
import { Connection, ConnectionManager, ConnectionOptions, createConnection, getConnectionManager } from 'typeorm';
export class Database {
private connectionManager: ConnectionManager;
constructor() {
this.connectionManager = getConnectionManager();
}
public async getConnection(name: string): Promise<Connection> {
const CONNECTION_NAME: string = name;
let connection: Connection;
const hasConnection = this.connectionManager.has(CONNECTION_NAME);
if (hasConnection) {
connection = this.connectionManager.get(CONNECTION_NAME);
if (!connection.isConnected) {
connection = await connection.connect();
}
} else {
const connectionOptions: ConnectionOptions = {
name: 'default',
type: 'mysql',
host: 'localhost',
port: 3306,
username: 'root',
password: 'password',
database: 'DemoDb',
synchronize: false,
logging: true,
entities: ['src/entities/**/*.js'],
migrations: ['src/migration/**/*.js'],
subscribers: ['src/subscriber/**/*.js'],
};
connection = await createConnection(connectionOptions);
}
return connection;
}
}
如果您使用的是webpack,请确保实体是专门导入的并以数组形式返回。
import {User} from 'src/entities/User.ts';
import {Album} from 'src/entities/Album.ts';
import {Photos} from 'src/entities/Photos.ts';
const connectionOptions: ConnectionOptions = {
name: 'default',
type: 'mysql',
host: 'localhost',
port: 3306,
username: 'root',
password: 'password',
database: 'DemoDb',
synchronize: false,
logging: true,
entities: [User, Album, Photos],
migrations: ['src/migration/**/*.js'],
subscribers: ['src/subscriber/**/*.js'],
};
最后
const connectionName = 'default';
const database = new Database();
const dbConn: Connection = await database.getConnection(connectionName);
const MspRepository = dbConn.getRepository(Msp);
await MspRepository.delete(mspId);
答案 8 :(得分:0)
我知道这很奇怪,但可能有人需要这个:
Windows
相关原因。
由于当前位置设置为小写字母 (d:/apps/app-name/etc
),我遇到了同样的错误。
在我更新目录更改指令以使用大写 D
(D:/apps/app-name/etc
) 后,问题得到解决。
答案 9 :(得分:0)
在验证两个包中的 TypeOrm 版本相同后,即@InsOp 提到的外部包和消费者存储库仍然存在问题,然后问题可能是-
基本上当我们创建一个外部包时 - TypeORM 尝试获取 "default" 连接选项,但如果没有找到则抛出错误:
<块引用>ConnectionNotFoundError:未找到连接“默认”。
我们可以通过在建立连接之前进行某种健全性检查来解决这个问题 - 幸运的是我们在 .has()
上有 getConnectionManager()
方法。
import { Connection, getConnectionManager, getConnectionOptions,
createConnection, getConnection, QueryRunner } from 'typeorm';
async init() {
let connection: Connection;
let queryRunner: QueryRunner;
if (!getConnectionManager().has('default')) {
const connectionOptions = await getConnectionOptions();
connection = await createConnection(connectionOptions);
} else {
connection = getConnection();
}
queryRunner = connection.createQueryRunner();
}
以上是一个快速代码片段,它是此问题的实际根本原因,但如果您有兴趣查看完整的工作存储库(不同示例)-
答案 10 :(得分:0)
就我而言,我有一组多个连接,而不仅仅是一个。您有 2 个选择。
default
命名连接,例如:createConnections([
{
name: 'default',
type: 'mysql',
host: 'localhost',
port: 3306,
username: 'root',
password: 'root',
database: 'users',
entities: [`${__dirname}/entity/*{.js,.ts}`],
synchronize: true,
logging: true
}
]);
import {getConnection} from "typeorm";
const db1Connection = getConnection("db1Connection");
// you can work with "db1" database now...
答案 11 :(得分:-1)
尽管Saras Arya提供了正确的答案,但我遇到了相同的错误
ConnectionNotFoundError:找不到连接“默认”。
由于我的typeORM
实体确实具有@Entity()
装饰器,并且扩展了BaseEntity
。
两个人不能在一起生活。
注意事项:停止复制他人代码。