spring-hateoas
spring-hateoas copied to clipboard
Spring HATEOAS - Library to support implementing representations for hyper-text driven REST web services.
If an empty list of hypermedia types is provided, activate all of them. Also consider making an empty list the default value for this annotation.
Consuming Spring Boot Actuator’s hypermedia should be easy. Check if Boot is serving up the right media type and then verify we can consume it with: * RestTemplate * WebClient...
The builders to construct an ALPS document reside within this project and are leveraged by Spring Data REST when building profiles. The JSON Schema code should also be migrated to...
By having a suite of test cases based on the various models, ensure an adequate testing of each media type. The various expectations would only require media types provide expected...
When https://github.com/spring-projects/spring-framework/issues/20505 is completed, look at leveraging it in WebFluxLinkBuilder.
`ControllerLinkBuilder` is currently using an extension of `DefaultUriTemplateHandler` to control which parts of a `UriComponentsBuilder` get encoded on expansion. `DUTH` has been deprecated since Spring 5.0 in favor of `DefaultUriBuilderFactory`...
I'd like to customize `HalFormsConfiguration` in order to be able to produce HAL-Forms options for some template payload properties via a home made annotation based engine. My goal is to...
I defined a RestController ,which annotated with @RequestMapping("${infrastructure.endpoints.project.base-path:/api/v1/projects}") , but when I use this controller to generate Link , `list.add(linkTo(methodOn(ProjectController.class).list()).withRel(PROJECTS));` I got link like this > `"projects": { > "href":...