組み込みの jetty サーバーの起動を含む Eclipse プラグインを開発しています。
Server jetty = new Server(8080);
WebAppContext webapp = new WebAppContext("webapp", "/webapp");
webapp.setWar("path/to/webapp);
jetty.setHandler(webapp);
jetty.start();
Program.launch("http://localhost:8080/webapp");
プラグインを含む Eclipse のコンソール ウィンドウに jetty の出力を表示したいと考えています。代わりに、私がプラグインを開発していることから、jetty の出力が Eclipse に表示されます。