0
Q:

pathvariable and requestparam together

@RequestMapping(value = "/child/{nodeId}/{relType}",method = RequestMethod.GET, produces=MediaType.APPLICATION_JSON)    
        public Iterable<Node> getConnectedNodes(@RequestParam(value="page", required=false) int page, @RequestParam(value="size", required=false) int size, @PathVariable("nodeId") String nodeId, @PathVariable("relType") String relType) {
            return nodeService.getConnectedNodes(nodeId, relType,page,size);    

}
0

New to Communities?

Join the community