0
Ajaxを使用して休憩サービスを呼び出そうとすると404エラーが表示されます。Ajaxを使用して休憩サービスを呼び出そうとするとエラーが発生する
WARファイル名:ドキュメント
サーバー側のURLマッピング、
@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);
}
クライアント側のURL: "NetworkError:404は見つかりません - http://localhost:8080/document/document/download.ws"
次へお試しください: http:// localhost:8080/Document/document/document/download.ws – NikNik