码迷,mamicode.com
首页 > 移动开发 > 详细

获取requestmapping所有的url

时间:2019-12-27 11:41:41      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:turn   type   style   ash   on()   shm   get   method   condition   

    /**
     * 测试接口
     * @return
     */
    @RequestMapping(value = "v1/getAllUrl")
    @ResponseBody
    public String  getAllUrl() {
        RequestMappingHandlerMapping mapping = applicationContext.getBean(RequestMappingHandlerMapping.class);
        // 获取url与类和方法的对应信息
        Map<RequestMappingInfo, HandlerMethod> map = mapping.getHandlerMethods();
        List<Map<String, String>> list = new ArrayList<Map<String, String>>();
        for (Entry<RequestMappingInfo, HandlerMethod> m : map.entrySet()) {
            Map<String, String> map1 = new HashMap<String, String>();
            RequestMappingInfo info = m.getKey();  
            HandlerMethod method = m.getValue();  
            PatternsRequestCondition p = info.getPatternsCondition();  
            for (String url : p.getPatterns()) {  
                map1.put("url", url);
            }  
            map1.put("className", method.getMethod().getDeclaringClass().getName()); // 类名  
            map1.put("method", method.getMethod().getName()); // 方法名 
            RequestMethodsRequestCondition methodsCondition = info.getMethodsCondition();
            for (RequestMethod requestMethod : methodsCondition.getMethods()) {
                map1.put("type", requestMethod.toString());
            }
            
            list.add(map1);
        }
 
        String jsonArray = JsonUtil.objectToString(list);
 
        return jsonArray;
    }

展示效果:

技术图片

获取requestmapping所有的url

标签:turn   type   style   ash   on()   shm   get   method   condition   

原文地址:https://www.cnblogs.com/csh520mjy/p/12106119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!