Missing grammar in JBoss Resteasy generated WADL
I managed to get a WADL by using the org.jboss.resteasy.wadl.ResteasyWadlServlet ( https://stackoverflow.com/a/41471710/2528609 ), but the WADL does not contain the Grammar. The representation nodes also do not contain an element attribute defining the response type. Given the following rest endpoint class import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; @Path("user") public class UserEndpoint { @GET @Path("") @Produces(MediaType.APPLICATION_JSON) public UserResponse getUser() { UserResponse