public static void main(String[] args) {
PropertyConfigurator.configure("conf/log4j.properties");
Method[] methods = HelloImpl.class.getDeclaredMethods();
for (Method method : methods) {
System.out.println(method.getName());
Class<?>[] param = method.getParameterTypes();
System.out.println(JSON.toJSONString(param));
try {
Method m2 = RMethodUtils.searchMethod(HelloImpl.class, method.getName(), param);
if (m2 == null) {
System.out.println("null");
} else {
System.out.println(method.getName());
}
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
}
HelloImpl.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:TakinRPC
作者:
评论列表
文章目录