I'm trying to implement Swagger in Jersey and there is implementation for both Jerseys. Want to know if Jersey2 is different from Jersey v2.x? or it's the same thing.
I'm trying to implement Swagger in Jersey and there is implementation for both Jerseys. Want to know if Jersey2 is different from Jersey v2.x? or it's the same thing.
Jersey (or JAX-RS) is a dependency that assists in implementing RESTful servers in Java. This dependency has two macro versions, Jersey1 (or simply Jersey) and Jersey2, in which case 1.x or 2.x indicates that it would be compatible with any of them, thus:
1.x indicates that it is compatible with 1.1 / 1.1.1 / 1.2 / 1.2.1 / etc 2.x indicates that it is compatible with 2.1 / 2.1.1 / 2.2 / 2.2.1 / etc
Remembering that some things in versions 1.x may not be compatible in versions 2.x and vice versa.