Heroku REST api 在 java 中调用
我们可以使用网络服务或其他任何方式连接到heroku吗?我想在 java 中设置一个集成,它应该登录 ito heroku 并运行我的应用程序。?
can we connect to heroku using webservices or anything else . i want to set up an integration in java which should login in ito heroku and run my application.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Heroku REST API 上有一个过时的文档,它将为您提供基本思想。不幸的是,最新的参考是 Heroku 命令行客户端源代码 - 它是用 Ruby 编写的。
There is an out-dated doc on the Heroku REST APIs that will give you the basic idea. Unfortunately the most up-to-date reference is the Heroku command-line client source code - which is in Ruby.
如果您想用 Java 构建 HTTP 客户端,Jersey(Oracle 的 JAX-RS 参考实现)是一个不错的选择。它的客户端库与 JAX-RS 2.0 中标准化的客户端库非常相似。
使用 Jersey,您也不仅限于 Java 内置的 HTTP 连接器,还可以插入(更好的)Apache HTTP 客户端连接器。 (全部在 Jersey 文档中描述)
http://jersey.java.net/
If you want to build an HTTP client in Java, Jersey (Oracle's JAX-RS Reference implementation) is a good choice. It's client library is very similar to the client library that will be in standardized in JAX-RS 2.0.
With Jersey, you are also not limited to Java's build in HTTP connector but can plug in the (much better) Apache HTTP client connector. (All described in the Jersey docs)
http://jersey.java.net/