当我从RMI调用构建NoClassDefFoundError
形式TwitterFactory
时,我知道问题是ConfigurationBuilder
:
ConfigurationBuilder cb = new ConfigurationBuilder().setHttpProxyHost("58.215.173.23").setHttpProxyPort(8580).setOAuthConsumerKey("18aVBaTUUx5Axh1WgBe7w").setOAuthConsumerSecret("RhE83B9RML060mfMT2FVpD0O6V7wZxZnax1RCA3Y4");
TwitterFactory tf = new TwitterFactory(cb.build());
twitter = tf.getInstance();
但调试器没有告诉我哪个类缺少。我甚至无法捕获这个异常,它只是出错了。
我通过在ConfigurationBuilder cb = new ...
添加断点来获取这些信息,并在
public InvocationTargetException(Throwable target) {
super((Throwable)null); // Here
this.target = target;
}
在InvocationTargetException
课程中,我也无法获得堆栈跟踪。
请帮我找出可能遗漏的内容或我做错了什么。