How to generate WADL file using Jersey 1.7(如何使用 Jersey 1.7 生成 WADL 文件)
问题描述
我创建了一个 hello world REST 服务,现在我想生成 WADL 文件.
I created a hello world REST service and now I d like to generate the WADL file.
我环顾四周,发现我可以通过调用来做到这一点:
I looked around and saw that I can do so by calling :
http://localhost:8090/application.wadl
但是我没有得到任何东西.我正在使用带有 Eclipse Indigo 的 Jersey 1.7 并在 Apache 7 上运行
However I dont get anything in my case. I am using Jersey 1.7 with Eclipse Indigo and running on Apache 7
我也试过打电话:
http://localhost:8090/<myapplication_name>.wadl
但仍然没有结果.
Jersey 1.7 是否支持此功能?如果是,我做错了什么?
Is this feature supported by Jersey 1.7? If yes what do i do wrong?
web.xml 文件如下所示:
The web.xml file looks like this:
谢谢
推荐答案
你的应用在 Apache 中的名称是什么,即context"?假设名称是restApp".试试这个:
What is the name of your app in Apache, i.e., "context"? Assume the name is "restApp". Try this:
http://localhost:8090/restApp/application.wadl
或者,如果你的 servlet 映射是:
Or, if you servlet mapping is:
<servlet-mapping>
<servlet-name>RESTService</servlet-name>
<url-pattern>/company/rest/*</url-pattern>
</servlet-mapping>
..它会是:
http://localhost:8090/restApp/company/rest/application.wadl
这篇关于如何使用 Jersey 1.7 生成 WADL 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Jersey 1.7 生成 WADL 文件
基础教程推荐
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01