![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.jetty.maven.AbstractJettyEmbedder Maven / Gradle / Ivy
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.maven;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import org.eclipse.jetty.security.LoginService;
import org.eclipse.jetty.server.RequestLog;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.ShutdownMonitor;
import org.eclipse.jetty.server.handler.ContextHandler;
import org.eclipse.jetty.util.component.ContainerLifeCycle;
/**
* AbstractJettyEmbedder
* Starts jetty within the current process.
*/
public abstract class AbstractJettyEmbedder extends ContainerLifeCycle
{
protected List contextHandlers;
protected List loginServices;
protected RequestLog requestLog;
protected MavenServerConnector httpConnector;
protected Server server;
protected boolean exitVm;
protected boolean stopAtShutdown;
protected List jettyXmlFiles;
protected Map jettyProperties;
protected ShutdownMonitor shutdownMonitor;
protected int stopPort;
protected String stopKey;
protected String contextXml;
protected Properties webAppProperties;
public List getContextHandlers()
{
return contextHandlers;
}
public void setContextHandlers(List contextHandlers)
{
if (contextHandlers == null)
this.contextHandlers = null;
else
this.contextHandlers = new ArrayList<>(contextHandlers);
}
public List getLoginServices()
{
return loginServices;
}
public void setLoginServices(List loginServices)
{
if (loginServices == null)
this.loginServices = null;
else
this.loginServices = new ArrayList<>(loginServices);
}
public RequestLog getRequestLog()
{
return requestLog;
}
public void setRequestLog(RequestLog requestLog)
{
this.requestLog = requestLog;
}
public MavenServerConnector getHttpConnector()
{
return httpConnector;
}
public void setHttpConnector(MavenServerConnector httpConnector)
{
this.httpConnector = httpConnector;
}
public Server getServer()
{
return server;
}
public void setServer(Server server)
{
this.server = server;
}
public boolean isExitVm()
{
return exitVm;
}
public void setExitVm(boolean exitVm)
{
this.exitVm = exitVm;
}
public boolean isStopAtShutdown()
{
return stopAtShutdown;
}
public void setStopAtShutdown(boolean stopAtShutdown)
{
this.stopAtShutdown = stopAtShutdown;
}
public List getJettyXmlFiles()
{
return jettyXmlFiles;
}
public void setJettyXmlFiles(List jettyXmlFiles)
{
this.jettyXmlFiles = jettyXmlFiles;
}
public Map getJettyProperties()
{
return jettyProperties;
}
public void setJettyProperties(Map jettyProperties)
{
this.jettyProperties = jettyProperties;
}
public ShutdownMonitor getShutdownMonitor()
{
return shutdownMonitor;
}
public void setShutdownMonitor(ShutdownMonitor shutdownMonitor)
{
this.shutdownMonitor = shutdownMonitor;
}
public int getStopPort()
{
return stopPort;
}
public void setStopPort(int stopPort)
{
this.stopPort = stopPort;
}
public String getStopKey()
{
return stopKey;
}
public void setStopKey(String stopKey)
{
this.stopKey = stopKey;
}
public void setWebAppProperties(Properties props)
{
if (webAppProperties != null)
webAppProperties.clear();
if (props != null)
{
if (webAppProperties == null)
webAppProperties = new Properties();
webAppProperties.putAll(props);
}
}
public String getContextXml()
{
return contextXml;
}
public void setContextXml(String contextXml)
{
this.contextXml = contextXml;
}
public void doStart() throws Exception
{
super.doStart();
configure();
configureShutdownMonitor();
server.start();
}
protected abstract void redeployWebApp() throws Exception;
public void redeployWebApp(Properties webaAppProperties) throws Exception
{
setWebAppProperties(webaAppProperties);
redeployWebApp();
}
public abstract void stopWebApp() throws Exception;
public void join() throws InterruptedException
{
server.join();
}
/**
* Configure the server and the webapp
* @throws Exception if there is an unspecified problem
*/
protected void configure() throws Exception
{
configureServer();
configureWebApp();
addWebAppToServer();
}
protected void configureServer() throws Exception
{
//apply any configs from jetty.xml files first
Server tmp = ServerSupport.applyXmlConfigurations(new Server(), jettyXmlFiles, jettyProperties);
if (tmp != null)
server = tmp;
server.setStopAtShutdown(stopAtShutdown);
//ensure there's a connector
if (httpConnector != null)
httpConnector.setServer(server);
ServerSupport.configureConnectors(server, httpConnector, jettyProperties);
//set up handler structure
ServerSupport.configureHandlers(server, contextHandlers, requestLog);
// set up security realms
ServerSupport.configureLoginServices(server, loginServices);
}
protected abstract void configureWebApp() throws Exception;
protected abstract void addWebAppToServer() throws Exception;
protected void applyWebAppProperties() throws Exception
{
//apply properties to the webapp if there are any
if (contextXml != null)
{
if (webAppProperties == null)
webAppProperties = new Properties();
webAppProperties.put("context.xml", contextXml);
}
}
private void configureShutdownMonitor()
{
if (stopPort > 0 && stopKey != null)
{
ShutdownMonitor monitor = ShutdownMonitor.getInstance();
monitor.setPort(stopPort);
monitor.setKey(stopKey);
monitor.setExitVm(exitVm);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy