While helping out someone else, I noticed they were trying to do Spring development using the @GET
, @Consumes
, and @Path
annotations. It is my understanding that these annotations come from the JSR-311 specification.
I simply suggested that they use the Spring @RequestMapping
annotation for mapping endpoints to their controller, but it made me curious as to whether or not Spring MVC (any version) supports JSR 311?