@GET @Path("/arbitest") @Produces({MediaType.APPLICATION_JSON})
public Map<String, Map<List<String>, Set<Map<String,Object>>>>
getArbitest() {
LOG.trace("in getArbitest()");
Map<String, Map<List<String>, Set<Map<String,Object>>>> map =
new HashMap<>();
return map;
}
I've also tried writing a new jax-rs service class with public methods and
none of those methods are showing up in the WADL, not sure why as I've
updated the blueprint config.xml accordingly with the appropriate new jaxrs
serviceBean.
When/how is the WADL generated? When this GET request is executed?
http://localhost:8181/ws/mm/er/er?_wadl
I have updated the OSGi bundle for rest bundle and even restarted Karaf,
still doesn't show the new methods from the new jaxrs service class.
btw, for both jaxrs service classes, the following is annotated at the class
level:
@Path("/")
--
View this message in context:
http://cxf.547215.n5.nabble.com/No-operation-matching-request-path-tp556149p5768584.html
Sent from the cxf-user mailing list archive at Nabble.com.