1
我已經實現了一個基本的Rest servlet - 它接受HTTP請求 - 很容易。 現在我必須配置它與SSL工作(即驗證應要求證書) 這是我到目前爲止的代碼骨架:獨立Java Spring Stand服務器 - 如何實現SSL HTTPS?
@RestController
public class MgmtController {
@RequestMapping(value = "/mgmt", method = RequestMethod.POST)
public void post(@RequestBody CustomImpl request, HttpServletRequest httpRequest, response httpResponse) {
System.out.println(request);
}
可以將它甚至可以編程方式?
感謝
證書協商在服務器上,而不是應用程序代碼。 –
好吧,服務器代碼這麼做......手動創建太複雜了嗎? – shemerk
你使用什麼網絡服務器? –