spring-hateoas
spring-hateoas copied to clipboard
Spring HATEOAS - Library to support implementing representations for hyper-text driven REST web services.
- should work in all Spring Boot applications - i am unsure about potential class loading issues around the static EnvironmentHolder in the StaticEnvironmentProvider (it is working in my deployments...
Spring framework allows to use placeholder in the request mapping. ``` @RequestMapping("${people.path:/people}") interface PersonController {} ``` Using hateoas 1.1.0 and the linkTo(PersonController.class).toUri() method, the url is resolved as "/people}" with...
The previous implementation used naive parsing suffering from many issues, especially when special characters were part of values. It also didn't escape the special characters when serializing a link to...
Small update to the existing tests to demonstrate the problem described in #1728
Is spring hateoas usable with webflux RouterFunction or do we have to use RestController approach in such case?
We've decided to use your library to parse `Link` headers, hoping that you'll correctly implement the specification intricacies, because doing parsing correctly is tricky. However, it's implemented completely naively, working...
When (finally) upgrading to 1.5, it appears there is a notable change in the encoding of request parameters where we use `linkTo(methodOn(..))`. With 1.3, `@RequestParam("with space")` appeared as `?with%20space=value` which...
I want to create a link to a controller method that does not use single `@RequestParam` annotations for each query parameter. Instead I pass an object containing all query parameters....