- 是的。你只需要一个
MongoClient
。
- 使用RegistryShutdown服务。当 BedSheet 关闭时,它也会关闭 IoC 注册表。
我会将其ConnectionManager
作为服务,然后将其关闭。所以在你的AppModule
:
@Build
static ConnectionManager buildConnectionManager() {
ConnectionManagerPooled(ActorPool(), `mongodb://localhost:27017`)
}
@Contribute { serviceType=RegistryShutdown# }
static Void contributeRegistryShutdown(Configuration config, ConnectionManager conMgr) {
config.add(|->| { conMgr.shutdown } )
}
MongoClient
也可以是服务。
您也可以将上面的内容重写为更多,嗯, 正确的。我倾向于使用该ActorPools
服务来密切关注他们。
static Void bind(ServiceBinder binder) {
binder.bind(MongoClient#)
}
@Build { serviceId="afMongo::ConnectionManager" }
static ConnectionManager buildConnectionManager(ConfigSource configSrc, ActorPools actorPools) {
actorPool := actorPools.get("myPod.connectionManager")
return ConnectionManagerPooled(actorPool , `mongodb://localhost:27017`)
}
@Contribute { serviceType=ActorPools# }
static Void contributeActorPools(Configuration config) {
config["myPod.connectionManager"] = ActorPool() { it.name = "myPod.connectionManager"; it.maxThreads = 1 }
}
@Contribute { serviceType=RegistryShutdown# }
static Void contributeRegistryShutdown(Configuration config, ConnectionManager conMgr) {
config["myPod.closeConnections"] = |->| {
conMgr.shutdown
}
}
myPod.closeConnections
只是一个任意名称,在示例中它没有在其他任何地方使用。`
但是您可以使用它来覆盖或删除贡献。一些未来的测试场景可能会添加MyTestAppModule
以下内容:
@Contribute { serviceType=RegistryShutdown# }
static Void contributeRegistryShutdown(Configuration config) {
config.remove("myPod.closeConnections")
}
在这种特定情况下可能没有用,但了解一下很有用。