Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如何获取 Java RESTful GET/POST 方法列表以放在 html 页面上?
假设您的服务是用 Java 编写的(从您标记问题的方式来看),我建议您使用Swagger来记录您的 REST 端点。
您是否在询问一种自动获取资源列表和支持方法的方法?这将取决于服务器端 RESTful 接口是如何实现的。该接口可能有一个 Web 应用程序描述语言 ( WADL ) 文档,该文档以机器可读的格式描述资源和方法。可以编写使用文档并将模型呈现为 HTML 的客户端代码。WADL 并未得到广泛支持,但某些框架(如Jersey )可以配置为自动生成它们。