5

我有一个应用程序来创建服务器证书请求,就像使用 java keytool 之类的一样。我正在尝试在 zip 文件中返回创建的证书请求和密钥,但对于我的生活,我无法让我的 REST 控制器响应 http 请求。更正:控制器响应,但方法中的代码从未执行。

服务器确实收到了请求,因为我的 CORS 过滤器已执行。但是我在控制器方法中有一个调试集,它从未被触发。方法的签名是否正确?我需要另一双眼睛,好吗?

这是我的控制器代码:

@RequestMapping(method = RequestMethod.POST, value = "/generateCert/")
public ResponseEntity<InputStreamResource> generateCert(@RequestBody CertInfo certInfo) {
    System.out.println("Received request to generate CSR...");

    byte[] responseBytes = commonDataService.generateCsr(certInfo);
    InputStreamResource resource = new InputStreamResource(new ByteArrayInputStream(responseBytes));

    System.out.println("Generated CSR with length of " + responseBytes.length);
    return ResponseEntity.ok()
            .header(HttpHeaders.CONTENT_DISPOSITION, "attachment;filename=certificate.zip")
            .contentType(MediaType.parseMediaType("application/zip"))
            .contentLength(responseBytes.length)
            .body(resource);
}

这是 Angular 请求:

generateCertificate(reqBody: GenerateCert) {
   let headers = new Headers();
   headers.append('Content-Type', 'application/json');

   this.http.post(this.urlGenerateCert, JSON.stringify(reqBody), {headers: headers}).subscribe(
    (data) => {
        let dataType = data.type;
        let binaryData = [];
        binaryData.push(data);
        this.certBlob = new Blob(binaryData);
    });
    return this.certBlob;
 }

最后,我从网络面板复制的请求和响应标头:

Response
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Content-Type, Authorization, Accept, X-Requested-With, remember-me
Access-Control-Allow-Methods: POST, GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Max-Age: 3600
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Length: 0
Date: Thu, 27 Dec 2018 22:48:00 GMT
Expires: 0
Location: http://localhost:8102/login
Pragma: no-cache
Set-Cookie: JSESSIONID=EDACE17328628D579670AD0FB53A6F35; Path=/; HttpOnly
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
X-XSS-Protection: 1; mode=block

Request
Accept: application/json, text/plain, */*
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9
Connection: keep-alive
Content-Length: 205
Content-Type: application/json
Host: localhost:8102
Origin: http://localhost:4200
Referer: http://localhost:4200/generateCerts
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36

我真的很难让 CORS 工作,所以也许这会干扰请求?除非绝对必要,否则我讨厌发布所有代码。有人有什么想法吗?

4

4 回答 4

1

请求/响应标头列表缺少有关 URL、方法和最重要的响应状态代码的信息。

在响应标头中看到Location: http://localhost:8102/login,我可以猜测它可能是401 Unauthorized重定向到登录页面的任何其他内容。因此,如果过滤器链中有一个 auth 过滤器,它可能是罪魁祸首。

以下请求标头

Host: localhost:8102
Origin: http://localhost:4200

建议您正在执行 CORS,并且可能确实涉及 CORS 过滤器并在请求路由到控制器之前完成响应。我建议在 CORS 过滤器中设置一个断点(如果有的话,也可以在其他过滤器中设置一个断点)并将其调试到返回响应的位置。

于 2019-01-06T19:20:14.863 回答
0

当 Angular 遇到这个语句时

this.http.post(url,body).subscribe(data => # some code
);

当服务继续执行时,它会立即返回以运行其余代码。就像 Java 中的 Future 一样。

如果你在这里

return this.cert;

您不会获得最终可能由 this.http 服务填充的值。由于页面已经呈现并且代码已经执行。您可以通过在 Observable 内部和外部包含它来验证这一点。

console.log(“Inside/outside observable” + new Date().toLocalTimeString());
于 2019-01-04T17:12:34.057 回答
0

感谢所有做出贡献的人。我发现错误是由于我的控制器方法的标头造成的。更改它们后,该方法被正确调用。这是有效的:

@RequestMapping(method = RequestMethod.POST, path = "/generateCert", 
    produces = {MediaType.APPLICATION_OCTET_STREAM_VALUE}, consumes = {MediaType.APPLICATION_JSON_VALUE})
public ResponseEntity<byte[]> generateCert(@RequestBody CertInfo certInfo) {
    byte[] responseBytes = commonDataService.generateCsr(certInfo);    
    return ResponseEntity.ok()
            .header(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_OCTET_STREAM_VALUE)
            .contentLength(responseBytes.length)
            .body(responseBytes);
}
于 2019-01-08T21:56:24.627 回答
0

定义一个proxy.conf.json

{
"/login*": {
    "target":"http://localhost:8080",
    "secure":false,
    "logLevel":"debug"
    }
} 

现在在你的package.json

"scripts": {
    "start":"ng serve --proxy-config proxy.config.json"
}

我认为在两个 webapp 中建立连接时都存在问题。请尝试。

于 2019-01-04T10:43:43.433 回答