我正在开发一个无头的eclipse应用程序。应用程序本身运行良好(如果从eclipse运行或作为产品导出)。当我尝试使用swing来渲染JFrame
时,我的问题出现了,应用程序只是在创建帧时挂起,而不会触发任何错误。这是有意的,我试图做一些不可能的事情,或者我想念一些事情吗?
简单摘要:
package headless;
import javax.swing.JFrame;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;
/**
* This class controls all aspects of the application's execution
*/
public class Application implements IApplication {
/*
* (non-Javadoc)
* @see org.eclipse.equinox.app.IApplication#start(org.eclipse.equinox.app.IApplicationContext)
*/
@Override
public Object start(final IApplicationContext context) throws Exception {
final JFrame frame = new JFrame("Test");
return IApplication.EXIT_OK;
}
/*
* (non-Javadoc)
* @see org.eclipse.equinox.app.IApplication#stop()
*/
@Override
public void stop() {
// nothing to do
}
}
注意:应用程序不仅仅会终止,它会在创建框架时停滞不前,并且永远不会到达return语句。