You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When running MigrateJaxRsRecipe against an endpoint that only defined a @Path on type and not method level the generated @RequestMapping annotation is broken.
Describe the bug
When running
MigrateJaxRsRecipe
against an endpoint that only defined a@Path
on type and not method level the generated@RequestMapping
annotation is broken.results in
with broken annotation
@RequestMapping(, method = RequestMethod.GET)
To Reproduce
Apply
MigrateJaxRsRecipe
to a controller as described above.Expected behavior
In the example above the resulting annotations should look like this:
@RequestMapping(method = RequestMethod.GET)
The text was updated successfully, but these errors were encountered: