15.4.1 将 bean 导出为 HTTP 服务
@Bean
public HttpInvokerServiceExporter httpExportedSpitterService(SpitterService service) {
HttpInvokerServiceExporter exporter = new HttpInvokerServiceExporter();
exporter.setService(service);
exporter.setServiceInterface(SpitterService.class);
return exporter;
}
Last updated