I want to generate a wadl file for my project which is using resteasy + Jboss 6.4 + Maven. There are many examples given for jersey but not for resteasy does anyone used it for resteasy
相关问题
- How to get Spring to wire my JmsComponent
- Browser cache files not getting updated after a ne
- SSL redirection from Apache to Wildfly
- Using JAX-RS (RESTEasy) with CDI (Weld) in Tomcat
- JPA LazyInitializationException when returning a J
相关文章
- Intermittent “sslv3 alert handshake failure” under
- Integrating Jetty with RESTEasy
- What versions of Jackson are allowed in JBoss 6.4.
- HTTP 500 Response with Body?
- jboss war deployed listener
- Keycloak Admin Client within Quarkus - java.lang.I
- JBoss AS 5 database connection pool re-connect rou
- JBPM 6.2. How to deploy a workflow directly from E
Resteasy since 3.0.14.Final do support WADL generation. You need to add resteasy-wadl to your dependency manager (e.g. maven):
then declare a new servlet endpoint in your web.xml for providing generated wadl file:
Sources code:
https://github.com/resteasy/Resteasy/tree/master/resteasy-wadl
Implementation ticket:
https://issues.jboss.org/browse/RESTEASY-166
Examples from Resteasy:
https://github.com/resteasy/resteasy-examples/tree/master/wadl-example/src/main/java/org/jboss/resteasy/wadl/testing