getDeclaredMethod和getMethod的区别:
getDeclaredMethod*()获取的是类自身声明的所有方法,包含public、protected和private方法。
getMethod*()获取的是类的所有共有方法,这就包括自身的所有public方法,和从基类继承的、从接口实现的所有public方法.
ApplicationContext context = null ;
ProxyServiceImpl proxyServiceImpl = new ProxyServiceImpl(context);
Class clazz = ProxyServiceImpl.class;
Method method = clazz.getDeclaredMethod("saveExpInfo", Message.class, Object.class, int.class);
method.setAccessible(true);
method.invoke(proxyServiceImpl, message, "error", 2);