如何在 Spring Boot 中发送带有 header、params 和 body 的 post Restful api 作为 Rest 模板
我需要使用需要 header、body 和 params 的 Restful api。
有什么方法可以将参数、正文和标头与resttemplate一起发送吗?
I need to consume restful api that required header, body, and params.
Are there any way to send params, body, and headers together with resttemplate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是你可以做到的 -> https://attacomsian.com/blog/spring-boot- Resttemplate-post-request-json-headers
Thats how you can do it -> https://attacomsian.com/blog/spring-boot-resttemplate-post-request-json-headers
您可以尝试Webclient将消息发布到特定的e/p,
参考 - https://medium.com/p/9863094bac3
对于前
You can try Webclient to post message to specific e/p,
ref - https://medium.com/p/9863094bac3
for ex-
这是使用 RestTemplate 发送 Post 请求的简单示例:
This is a simple example of send Post request using RestTemplate: