调用受 TLS 保护的 REST 端点

huangapple 未分类评论44阅读模式
英文:

Calling Rest end point protected with TLS

问题

我有以下的 REST 终端点。

@RestController
public class TestController {
    @RequestMapping(value = "/data", method = RequestMethod.GET)
    public String getData() {
        
        return "Hello World";
    }
}

在 YML 文件中

server:
  ssl:
    enabled: true
    client-auth: need
    key-store: {keystore-path}
    key-store-password: {keystore-password}
    key-alias: alias-name
    key-store-type: JKS

通过这些属性,我能够保护我的 REST 终端点。当我尝试从 POSTMAN 调用终端点时,
我会得到预期的错误
**"Bad request. Combination of host and port requires TLS."** 
这是正常且预期的。

现在我需要从 Java(非 Spring Boot)编写一个客户端。
我的疑问是我是否需要导入
将客户端证书导入服务器 JKS 文件?这是唯一需要的步骤吗?
英文:

I have the below rest end point.

@RestController
public class TestController {
	@RequestMapping(value = "/data", method = RequestMethod.GET)
	public String getData() {
		
		return "Hello World";
	}

In YML file

server:
  ssl:
    enabled: true
    client-auth: need
    key-store: {keystore-path}
    key-store-password: {keystore-password}
    key-alias: alias-name
    key-store-type: JKS

With these proerties i am able to protect my Rest end point .When i try to call end point from POSTMAN
I get the expected error
" Bad request .Combination of host and port requires TLS. "
Which is fine and expected.

Now i need to write a client from java(non spring boot)
My doubt is do i need to import
Import Client Cert to Server jks File ? Is that the only step needed ?

huangapple
  • 本文由 发表于 2020年7月23日 20:16:21
  • 转载请务必保留本文链接:https://java.coder-hub.com/63054068.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定