如何将Spring Hateoas与Router功能一起使用?

时间:2020-06-18 21:50:17

标签: spring-webflux spring-hateoas

有没有办法使用带有路由器功能的spring hateoas? 在我看来,唯一的方法是用RestController替换我的RouterFunction。

@Configuration @EnableWebFlux class RouterConfig : WebFluxConfigurer { @Bean fun mainRouter(testHandler: TestHandler) = coRouter { "/employee".nest { accept(APPLICATION_JSON).nest { "/{ID}".nest { GET("",testHandler::getEmployeeByID) } } } }

我可以直接在上述函数中添加hateaos链接,而不是创建restController类吗?

0 个答案:

没有答案