把jive匯入Eclipse的問題

zenius發表於2005-02-27
如果直接從tomcat中啟動jive,沒有問題,可是如果把jive倒入Eclipse,從Eclipse啟動jive卻出現問題,我看了原始碼,發現問題可能在ConnectionManager.java裡
Runtime runtime = Runtime.getRuntime();
Class c = runtime.getClass();
try {
Method m = c.getMethod("addShutdownHook", new
Class [] { Thread.class } );
m.invoke(runtime, new Object[] { new ShutdownThread
() });
}
catch (NoSuchMethodException nsme) {

}
我的理解是Runtime.getRuntime()返回的是當前java程式的Runtime,如果直接從tomcat中啟動jive就是tomcat的Runtime,如果從Eclipse中啟動jive就是Eclipse的Runtime,不知道該怎麼解決,有沒有人從Eclipse啟動了jive,如果有的話指點一下吧。

相關文章