xUnit icon indicating copy to clipboard operation
xUnit copied to clipboard

给xunit提供web入口调度器

Open hejiehui opened this issue 3 years ago • 0 comments

能够按照url,请求方式等http参数映射到unit,或某些领域类的方法上,参考webflux: .GET("/person/{id}", RequestPredicates.accept(MediaType.APPLICATION_JSON), personHandler::getPerson) .GET("/person", RequestPredicates.accept(MediaType.APPLICATION_JSON), personHandler::listPeople) .POST("/person", personHandler::createPerson) .build();

hejiehui avatar Oct 13 '22 02:10 hejiehui