I'm using Grizzly with Jersey via GrizzlyHttpServerFactory. I was wondering
if it was possible to have N paths that map to N ResourceConfig instances?
There are a lot of debates about the right way to version APIs and I'd
rather not go down that rabbit hole.
But lets assume that I want a "rest/v1.0" path that maps to a
ResourceConfigV1 and a "rest/v2.0" path that maps to a ResourceConfigV2.
What is the simplest way to do that in Jersey with Grizzly?
Thanks in advance!
R.