What is the difference in static methods in the JAX-RS class?

I just read the code in the JAX-RS class where the annotated @Path method is static - for me this is new. It compiles (does not use any instance variables), and I believe that for one user, at least, behaves as expected.

Will it make any difference? Are there multithreading issues or performance limitations?

+4
source share

Source: https://habr.com/ru/post/1607699/


All Articles