1

我能够“在服务器上运行/调试”一个在 Aptana 中创建的新 Rails 项目。

但是,对于现有项目,“在服务器上运行/调试”会静默失败。

我无法弄清楚为什么行为会有所不同。

这是日志中显示的内容。

!ENTRY org.eclipse.ui 4 0 2012-07-09 16:33:49.264
!MESSAGE 未处理的事件循环异常
!堆栈 0
java.lang.NullPointerException
    在 org.radrails.rails.internal.ui.commands.RunServerHandler.findOrCreateServer(RunServerHandler.java:77)
    在 org.radrails.rails.internal.ui.commands.RunServerHandler.execute(RunServerHandler.java:44)
    在 org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
    在 org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
    在 org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
    在 org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
    在 org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
    在 org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:241)
    在 org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:829)
    在 org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:815)
    在 org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:805)
    在 org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    在 org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
    在 org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3588)
    在 org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3209)
    在 org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
    在 org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
    在 org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
    在 org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
    在 org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    在 org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
    在 org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    在 com.aptana.rcp.IDEApplication.start(IDEApplication.java:125)
    在 org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    在 org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    在 org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    在 org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
    在 org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    在 sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    在 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    在 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    在 java.lang.reflect.Method.invoke(Method.java:616)
    在 org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
    在 org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
    在 org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    在 org.eclipse.equinox.launcher.Main.main(Main.java:1386)

谢谢,杰米

4

1 回答 1

2

我有同样的问题。我不知道发生了什么,但这是我为解决这个问题所做的:

  1. Preferences->Aptana Studio->Web Servers
  2. 单击New
  3. Rails server从列表中选择。

在对话框中:输入服务器名称(我不确定,但最好输入您正在为其设置服务器的项目的确切名称 - 这与下面列表中显示的名称相同);从您要为其配置服务器的列表中选择一个项目名称;保持0.0.0.03000不变。

单击确定并享受!

于 2012-07-17T10:50:09.597 回答