open browser after starting jetty

This commit is contained in:
Sebastian Sdorra
2011-07-31 19:10:18 +02:00
parent 5b499a8f4e
commit 8353a52894
2 changed files with 177 additions and 0 deletions

View File

@@ -0,0 +1,164 @@
/**
* Copyright (c) 2010, Sebastian Sdorra
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of SCM-Manager; nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* http://bitbucket.org/sdorra/scm-manager
*
*/
package sonia.scm.maven;
//~--- non-JDK imports --------------------------------------------------------
import org.apache.maven.plugin.logging.Log;
import org.eclipse.jetty.util.component.LifeCycle;
import org.eclipse.jetty.util.component.LifeCycle.Listener;
//~--- JDK imports ------------------------------------------------------------
import java.awt.Desktop;
import java.net.URI;
/**
*
* @author Sebastian Sdorra
*/
public class OpenBrowserListener implements Listener
{
/**
* Constructs ...
*
*
* @param log
* @param port
* @param contextPath
*/
public OpenBrowserListener(Log log, int port, String contextPath)
{
this.log = log;
this.port = port;
this.contextPath = contextPath;
}
//~--- methods --------------------------------------------------------------
/**
* Method description
*
*
* @param event
* @param cause
*/
@Override
public void lifeCycleFailure(LifeCycle event, Throwable cause)
{
// do nothing
}
/**
* Method description
*
*
* @param event
*/
@Override
public void lifeCycleStarted(LifeCycle event)
{
new Thread(new Runnable()
{
@Override
public void run()
{
try
{
Desktop desktop = Desktop.getDesktop();
desktop.browse(new URI("http://localhost:" + port + contextPath));
}
catch (Exception ex)
{
log.warn(ex);
}
}
}).start();
}
/**
* Method description
*
*
* @param event
*/
@Override
public void lifeCycleStarting(LifeCycle event)
{
// do nothing
}
/**
* Method description
*
*
* @param event
*/
@Override
public void lifeCycleStopped(LifeCycle event)
{
// do nothing
}
/**
* Method description
*
*
* @param event
*/
@Override
public void lifeCycleStopping(LifeCycle event)
{
// do nothing
}
//~--- fields ---------------------------------------------------------------
/** Field description */
private String contextPath;
/** Field description */
private Log log;
/** Field description */
private int port;
}

View File

@@ -44,6 +44,8 @@ import org.eclipse.jetty.webapp.WebAppContext;
//~--- JDK imports ------------------------------------------------------------
import java.awt.Desktop;
import java.io.File;
import java.util.List;
@@ -144,6 +146,12 @@ public class RunMojo extends AbstractBaseScmMojo
Server server = new Server();
SelectChannelConnector connector = new SelectChannelConnector();
if (startBrowser && Desktop.isDesktopSupported())
{
connector.addLifeCycleListener(new OpenBrowserListener(getLog(), port,
contextPath));
}
connector.setPort(port);
server.addConnector(connector);
@@ -173,4 +181,9 @@ public class RunMojo extends AbstractBaseScmMojo
* @parameter
*/
private int port = 8081;
/**
* @parameter expression="${startBrowser}" default-value="true"
*/
private boolean startBrowser = true;
}