the Apache CXF project offers a proxy based client implementation for REST services. This looks like:
Resource resource = JAXRSClientFactory.create( baseAddress, Resource.class )
Does anyone know a similar implementation for Jersey?
I spotted an approach using @HyperMediaController annotations, but I want to stick to JSR-311 default annotations like @Path and @Get …
Has anyone an idea?
I created an own implementation. See utils-apl-derived wiki page therefore.