本文整理汇总了TypeScript中@tsed/common.ServerSettingsService类的典型用法代码示例。如果您正苦于以下问题:TypeScript ServerSettingsService类的具体用法?TypeScript ServerSettingsService怎么用?TypeScript ServerSettingsService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ServerSettingsService类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: inject
inject([ServerSettingsService], (serverSetttings: ServerSettingsService) => {
serverSetttings.set("mongoose", {
url: undefined,
connectionOptions: undefined,
urls: undefined
});
this.connectStub.restore();
})
示例2: inject
inject([TypeORMModule, ServerSettingsService], (service: TypeORMModule, settings: ServerSettingsService) => {
this.service = service;
settings.set("typeorm", {
db1: {
config: "config"
}
});
this.createConnectionStub = Sinon.stub(this.service.typeORMService, "createConnection").resolves("connection" as any);
return (this.result = this.service.$onInit());
})
示例3: constructor
constructor(
private jsonSchemaService: JsonSchemesService,
private serverSettingsService: ServerSettingsService,
private converterService: ConverterService
) {
super();
const ajvSettings: IAjvSettings = this.serverSettingsService.get("ajv") || {};
this.options = Object.assign(
{
verbose: false
},
ajvSettings.options || {}
);
this.errorFormatter = ajvSettings.errorFormat ? ajvSettings.errorFormat : this.defaultFormatter;
}
示例4:
$afterRoutesInit(): Promise<any> | void {
const host = this.serverSettingsService.getHttpPort();
Object.keys(this.settings).map(async key => {
const {path} = this.settings[key];
$log.info(`[${key}] GraphQL server is available on http://${host.address}:${host.port}/${path.replace(/^\//, "")}`);
});
}