获取springmvc中所有的Controller

@RequestMapping(value = "getUrlMapping") public ModelAndView  getUrlMapping(HttpServletRequest request) {
    WebApplicationContext wc = getWebApplicationContext(request.getSession().getServletContext());
    RequestMappingHandlerMapping rmhp = (RequestMappingHandlerMapping)wc.getBean("org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0");
    Map<RequestMappingInfo, HandlerMethod> map = rmhp.getHandlerMethods(); for (Iterator<RequestMappingInfo> iterator = map.keySet().iterator(); iterator
            .hasNext();) {
        RequestMappingInfo info = iterator.next();
        System.out.print(info.getConsumesCondition());
        System.out.print(info.getCustomCondition());
        System.out.print(info.getHeadersCondition());
        System.out.print(info.getMethodsCondition());
        System.out.print(info.getParamsCondition());
        System.out.print(info.getPatternsCondition());
        System.out.print(info.getProducesCondition());

        System.out.print("===");

        HandlerMethod method = map.get(info);
        System.out.print(method.getMethod().getName() + "--");
        System.out.print(method.getMethodAnnotation(RequestMapping.class).params()[0]);
        System.out.println();
    } return null;
} public WebApplicationContext getWebApplicationContext(ServletContext sc) { return WebApplicationContextUtils.getRequiredWebApplicationContext(sc);
}



代码如上:

需要注意的是


RequestMappingHandlerMapping rmhp = (RequestMappingHandlerMapping)wc.getBean("org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0");

取RequestMappingHandlerMapping 的时候,如果集成了多个展示方式的话,RequestMappingHandlerMapping 对象会有多个,直接通过class是娶不到的。但是可以通过上面的方式获取到。




package com.wy.controller.system;

import com.wy.util.JsonHelper;
import com.wy.vo.BaseForm;
import com.wy.vo.system.RequestToMethodItem;
import javassist.*;
import javassist.bytecode.CodeAttribute;
import javassist.bytecode.LocalVariableAttribute;
import javassist.bytecode.MethodInfo;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.condition.PatternsRequestCondition;
import org.springframework.web.servlet.mvc.condition.RequestMethodsRequestCondition;
import org.springframework.web.servlet.mvc.method.RequestMappingInfo;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
import org.springframework.web.servlet.support.RequestContextUtils;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.lang.reflect.Field;
import java.util.*;


/**
 * 用户Controller
 */
@Controller
@RequestMapping("/sandbox")
public class SandboxController {

    private static final Logger LOGGER = Logger.getLogger(SandboxController.class);


    @RequestMapping("/index")
    public ModelAndView index(Long id, HttpServletRequest request, HttpServletResponse response) throws IOException, ClassNotFoundException, NotFoundException {
        ApplicationContext ac = WebApplicationContextUtils.getRequiredWebApplicationContext(request.getSession().getServletContext());
        RequestMappingHandlerMapping handlerMapping = (RequestMappingHandlerMapping) ac.getBean("org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#1");
        List<RequestToMethodItem> requestToMethodItemList = loadRequestToMethodItem(handlerMapping);
        Map<String, Object> results = new HashMap<String, Object>();
        results.put("data", requestToMethodItemList);

        //生成json

        for (RequestToMethodItem item:requestToMethodItemList){
            String url=item.getRequestUrl();
            String[] urls=url.split("//");

        }
        return new ModelAndView("/sandbox/index", results);

    }

    private List<RequestToMethodItem> loadRequestToMethodItem(RequestMappingHandlerMapping handlerMapping) {
        List<RequestToMethodItem> requestToMethodItemList = new ArrayList<RequestToMethodItem>();
        Map<RequestMappingInfo, HandlerMethod> map = handlerMapping.getHandlerMethods();
        for (Map.Entry<RequestMappingInfo, HandlerMethod> m : map.entrySet()) {
            RequestMappingInfo requestMappingInfo = m.getKey();
            HandlerMethod mappingInfoValue = m.getValue();
            RequestMethodsRequestCondition methodCondition = requestMappingInfo.getMethodsCondition();
            int methodsSize = requestMappingInfo.getMethodsCondition().getMethods().size();
            String requestType = methodsSize == 0 ? "GET" : methodCondition.getMethods().toString();
            String requestUrl = requestMappingInfo.getPatternsCondition().toString();
            String controllerName = mappingInfoValue.getBeanType().toString();
            String requestMethodName = mappingInfoValue.getMethod().getName();
            Class<?>[] methodParamTypes = mappingInfoValue.getMethod().getParameterTypes();

            Map methodParam = loadMethodParam(requestMappingInfo, mappingInfoValue);
            RequestToMethodItem item = new RequestToMethodItem(requestUrl, requestType, controllerName, requestMethodName, methodParamTypes, methodParam);
            requestToMethodItemList.add(item);

        }
        return requestToMethodItemList;
    }

    private Map loadMethodParam(RequestMappingInfo requestMappingInfo, HandlerMethod mappingInfoValue) {
        try {

            String controllerName = mappingInfoValue.getBeanType().getName();
            String requestMethodName = mappingInfoValue.getMethod().getName();
            return getMethodParamNames2(controllerName, requestMethodName);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;

    }

    public Map getMethodParamNames2(String clazzName, String method) throws NotFoundException, ClassNotFoundException {

        Map map = new HashMap();
        ClassPool pool = ClassPool.getDefault();
        pool.insertClassPath(new ClassClassPath(this.getClass()));

        CtClass cc = pool.get(clazzName);
        CtMethod cm = cc.getDeclaredMethod(method);
        CtClass[] parameterTypes = cm.getParameterTypes();

        MethodInfo methodInfo = cm.getMethodInfo();
        CodeAttribute codeAttribute = methodInfo.getCodeAttribute();
        LocalVariableAttribute attr = (LocalVariableAttribute) codeAttribute.getAttribute(LocalVariableAttribute.tag);
        if (attr == null)
            throw new RuntimeException(cc.getName());

        String[] paramNames = new String[cm.getParameterTypes().length];
        int pos = Modifier.isStatic(cm.getModifiers()) ? 0 : 1;
        for (int i = 0; i < paramNames.length; i++) {
            paramNames[i] = attr.variableName(i + pos);
            String name = attr.variableName(i + pos);
            Class c = Class.forName(parameterTypes[i].getName());
            Class superClass = c.getSuperclass();

            if (null != superClass) {
                if (BaseForm.class.getName().equals(c.getSuperclass().getName())) {
                    Map<String, String> map2 = getClassFields(c, true);
                    map.putAll(map2);
                    continue;
                }
            }
            if (HttpServletRequest.class.getName().equals(c.getName())) {
                continue;
            }
            if (HttpServletResponse.class.getName().equals(c.getName())) {
                continue;
            }
            if (BindingResult.class.getName().equals(c.getName())) {
                continue;
            }
            if (BaseForm.class.getName().equals(c.getName())) {
                Map<String, String> map2 = getClassFields(BaseForm.class, false);
                map.putAll(map2);
                continue;
            }
            map.put(name, parameterTypes[i].getSimpleName());
        }
        return map;
    }

    /**
     * 获取类实例的属性值
     *
     * @param clazz              类名
     * @param includeParentClass 是否包括父类的属性值
     * @return 类名.属性名=属性类型
     */
    public static Map<String, String> getClassFields(Class clazz, boolean includeParentClass) {
        Map<String, String> map = new HashMap<String, String>();
        Field[] fields = clazz.getDeclaredFields();
        for (Field field : fields) {
            map.put(field.getName(), field.getType().getSimpleName());
        }
        if (includeParentClass)
            getParentClassFields(map, clazz.getSuperclass());
        return map;
    }

    /**
     * 获取类实例的父类的属性值
     *
     * @param map   类实例的属性值Map
     * @param clazz 类名
     * @return 类名.属性名=属性类型
     */
    private static Map<String, String> getParentClassFields(Map<String, String> map, Class clazz) {
        Field[] fields = clazz.getDeclaredFields();
        for (Field field : fields) {
            map.put(field.getName(), field.getType().getSimpleName());
        }
        if (clazz.getSuperclass() == null) {
            return map;
        }
        //getParentClassFields ( map, clazz.getSuperclass ( ) );
        return map;
    }


}



转载于:https://my.oschina.net/u/557580/blog/534699

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值