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
#1062 - Update reference docs to show EntityLinks are a Spring Web MVC 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
Copy file name to clipboardExpand all lines: src/main/asciidoc/server.adoc
+4
Original file line number
Diff line number
Diff line change
@@ -421,6 +421,10 @@ It's registered as primary bean so that it's always the sole injection candidate
421
421
`ControllerEntityLinks` is the default implementation that will be included in the setup, but users are free to implement and register their own implementations.
422
422
Making those available to the `EntityLinks` instance available for injection is a matter of registering your implementation as Spring bean.
423
423
424
+
IMPORTANT: `EntityLinks` and it's various implementations are NOT currently provided out-of-the-box for Spring WebFlux applications.
425
+
The contract defined in the `EntityLinks` SPI was originally aimed at Spring Web MVC and doesn't consider Reactor types.
426
+
Developing a comparable contract that supports reactive programming is still in progress.
0 commit comments