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
I just wanted to implement/use Spring Hateoas, but I've got a problem:
I've got a custom RequestMappingHandlerMapping registered in WebMvcConfigurationSupport, which scans all Controllers for an additional annotation (@apiversion) in order to build custom URLs like: /v1/users if the Controller ist annotated with @RequestMapping("users") @apiversion(1).
Is it possible to modify Spring Hateoas to use the registered RequestMappingHandlerMapping in order to construct URLs using linkTo and methodOn?
The text was updated successfully, but these errors were encountered:
We now look up the ConversionService available in the ApplicationContext from Web(Mvc|Flux)LinkBuilder. Some API tweaks to WebHandler to allow the lookup from the current request. The general fallback is now the invocation of …toString() on the parameter value.
Fixes#118, #352, #144, #149.
We now look up the ConversionService available in the ApplicationContext from Web(Mvc|Flux)LinkBuilder. Some API tweaks to WebHandler to allow the lookup from the current request. The general fallback is now the invocation of …toString() on the parameter value.
Fixes#118, #352, #144, #149.
I just wanted to implement/use Spring Hateoas, but I've got a problem:
I've got a custom RequestMappingHandlerMapping registered in WebMvcConfigurationSupport, which scans all Controllers for an additional annotation (@apiversion) in order to build custom URLs like: /v1/users if the Controller ist annotated with @RequestMapping("users") @apiversion(1).
Is it possible to modify Spring Hateoas to use the registered RequestMappingHandlerMapping in order to construct URLs using linkTo and methodOn?
The text was updated successfully, but these errors were encountered: