> I just click Run > Run As > Pivot
> Application. Because this doesn't have a main() method, I assumed it uses
> the startup() method instead.
That's correct. By the way, the fact that this menu item exists means that the
plugin was installed correctly. However, it doesn't seem to be launching your
application properly. What version of Eclipse are you using?
Another thing you can try is adding a main() method to your app. In this
method, you can call DesktopApplicationContext.main():
public static void main(String[] args) {
DesktopApplicationContext.main(MyApplication.class, args);
}
That will allow you to launch your application using Eclipe's built-in launch
support.
G