有没有办法在 Seam Component 中调用私有方法。我使用了以下代码,但我发现声明的方法中没有私有方法。所以,我得到了 NoSuchMethodException。
Object obj = Component.getInstance("myComponent");
Method myMethod = obj.getClass.getDeclaredMethod("myPrivateMethod",String.class);
myMethod.invoke(obj,"myParameter");