Fix code sample for nested router functions #28603
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
type: documentation
A documentation task
Milestone
Hi,
About nested Routes in Web on Reactive Docs ,
https://docs.spring.io/spring-framework/docs/current/reference/html/web-reactive.html#nested-routes
says
path("/person", builder -> ... .POST("/person", ...)).build();
it means that API will be
POST "/person/person"
,however this example is how to construct nest path without duplication so I think it is not RESTful.
Is this intentional?
if not, how about to update like
The text was updated successfully, but these errors were encountered: