-
Notifications
You must be signed in to change notification settings - Fork 38.9k
Open
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement
Milestone
Description
Sometimes we need extract data from child node instead of root document.
For example get index mappings from ElasticSearch:
@HttpExchange("http://localhost:9200")
public interface ElasticSearchIndexOperations {
@GetExchange("/{index}/_mapping")
@JsonPointer("/${index}/mappings")
Mappings getMapping(@PathVariable String index);
}NOTE: placeholders in @JsonPointer("/${index}/mappings") need to be resolved base on method parameters.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement