Hi,
I am using camel cxfrs component to expose rest webservices. the interface
below work fine with one @PathParam parameter.
public interface Service2 {
@GET
@Path("/world2/{id}")
@Produces(MediaType.APPLICATION_XML)
public Response hello2(@PathParam("id") String id) ;
However
Thanks!
It worked fine! Not sure what was wrong previously.
On Sat, Jul 22, 2017 at 3:15 AM, Tomohisa Igarashi
wrote:
> Hi,
>
> It just works fine for me
> https://github.com/igarashitm/issues/blob/master/camel/misc/
> src/test/java/JsonPathTransformTest.java
>
> Thanks,
> Tomo
>
>
> On 07/20/2
I do not think it has got anything to do with camle, depends on what
framework you are using to persist data, for example if you are using
hibernate(with orm mapping) component of camel, may be you can do something
like below.