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
The documentation currently states that ControllerEntityLinks will be included in the default setup but that does not appear to be the case when using WebFlux.
The text was updated successfully, but these errors were encountered:
I have dug in a little, and discovered that to implement this, we need a WebFluxLinkBuilderFactory. The contract underlying this (WebFluxLinkBuilder) is very different than WebMvcLinkBuilder, as in, Reactor-based types, functional concepts, and different inputs (ServerWebExchange).
I'm not convinced the abstraction in place that creates a ControllerEntityLinks bean by injecting a link building factory is a drop in for WebFlux. It appears heavily driven by Spring MVC.
The implication is that we need something more akin to a WebMvcControllerEntityLinks bean and a WebFluxControllerEntityLinks bean.
…C feature.
For now, EntityLinks is only properly support for Spring Web MVC. Developing this for WebFlux is in progress. Properly indicate this in the reference docs.
Related: #1071
The documentation currently states that
ControllerEntityLinks
will be included in the default setup but that does not appear to be the case when using WebFlux.The text was updated successfully, but these errors were encountered: