当我尝试使用Ajax调用rest服务时显示404错误。
战争文件名:文件
服务器端网址映射,
@RequestMapping(method = RequestMethod.POST, value = "/document/document/download.ws")
public HttpEntity<DownloadDocumentResponse> downloadDocument(
@RequestBody final DownloadDocumentRequest downloadDocumentRequest) throws Exception {
final DownloadDocumentResponse downloadDocumentResponse = documentWs.downloadDocument(downloadDocumentRequest);
downloadDocumentResponse.setApplicationContext(null);
return new ResponseEntity<DownloadDocumentResponse>(downloadDocumentResponse, HttpStatus.OK);
}
客户端网址:&#34;网络错误:404未找到 - http://localhost:8080/document/document/download.ws&#34;
答案 0 :(得分:0)
我认为这是一个路径错误。您的域的路径未正确写入