spring-hateoas
spring-hateoas copied to clipboard
Spring HATEOAS - Library to support implementing representations for hyper-text driven REST web services.
Using HAL+json with spring-hateoas v2.2.5 in an app using Springboot v 3.2.X For links generated like this ```kotlin @Component class MyResourceProcessor() : RepresentationModelProcessor { //... linkTo( methodOn(MyController::class.java) .getMyEntity( somePathVariable =...
See https://github.com/spring-projects/spring-hateoas/issues/1695#issuecomment-2559303476 for context. There are some times where the list of possible HAL-FORMS options is constrained by a `PathVariable`. I propose to add a `PropertyCreationContext` that would provide intel...
At the moment options can only be added via HalFormsConfiguration for certain input classes' properties. It would be more flexible when PropertyMetadata would support it too, because there are use...
We have to deal with multiple named ObjectMappers in our Application. Using `@EnableHypermediaSupport(type = EnableHypermediaSupport.HypermediaType.HAL)` leads to the following Exception: `Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'hypermediaWebFluxConfigurer' defined...
The MVC link builder has some great Kotlin extensions that reduce the boilerplate code quite a lot. But when using reactive, which is quite a valid use case when using...