Jersey2 is different from jersey v2.x?

0

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.

    
asked by anonymous 14.09.2016 / 17:17

1 answer

0

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.

    
28.06.2017 / 14:24