英文:
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 ?
专注分享java语言的经验与见解,让所有开发者获益!
评论