java 获取项目中的所有接口_Springboot项目获取所有的接口

本文介绍了一种通过Spring MVC框架获取所有URL及其对应处理方法的方式。具体实现包括利用`RequestMappingHandlerMapping`获取URL与类及方法的对应信息,并通过反射获取类和方法上的注解详情。
摘要由CSDN通过智能技术生成

@Autowired

private WebApplicationContext applicationContext;

@Override

public List getAllUrl() {

RequestMappingHandlerMapping mapping = applicationContext.getBean(RequestMappingHandlerMapping.class);

// 获取url与类和方法的对应信息

Map map = mapping.getHandlerMethods();

List> list = new ArrayList>();

for (Map.Entry m : map.entrySet()) {

Map map1 = new HashMap();

RequestMappingInfo info = m.getKey();

HandlerMethod method = m.getValue();

//获取当前方法所在类名

Class> bean = method.getBeanType();

//使用反射获取当前类注解内容

Api api = bean.getAnnotation(Api.class);

RequestMapping requestMapping = bean.getAnnotation(RequestMapping.class);

String[] value = requestMapping.value();

map1.put("parent",value[0])

//获取方法上注解以及注解值

ApiOperation methodAnnotation = method.getMethodAnnotation(ApiOperation.class);

String privilegeName = methodAnnotation.notes();

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);

}

return list;

}

本文地址:https://blog.csdn.net/qq_33371766/article/details/110248376

希望与广大网友互动??

点此进行留言吧!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值