我制作了一个 NestJS 微服务包和单独的 NestJS 客户端应用程序,用于联系微服务。下面给出的是客户端应用程序中使用的代码。在微服务中,使用的方法是@messagePattern,它是功能性的。我的问题是前端应用程序如何在不通过客户端的情况下直接与微服务联系,以及如何在微服务中设置 swagger 或直接从邮递员那里进行测试?
import { BadRequestException, Injectable, UnauthorizedException } from '@nestjs/common';
import { ClientProxy, ClientProxyFactory, Transport } from '@nestjs/microservices';
import { errorResponse, goodResponse } from 'src/helpers/response.helper';
import { AddContractDTO } from './contract.dto';
@Injectable()
export class ContractService {
private client: ClientProxy;
constructor() {
this.client = ClientProxyFactory.create({
transport: Transport.TCP,
options: {
host: '127.0.0.1',
port: 3011,
},
});
}
public async addContract(data: AddContractDTO) {
const res = await this.client.send<any,any>('contract/addContract', data).toPromise();
console.log(res);
if(!res.success){
throw new BadRequestException(res)
}
return goodResponse(res.data.data,'Contract created');
}
}