hotmail just destroyed my last post. I apologize. I will try one more time to
share my source
import org.mortbay.jetty.Connector;import org.mortbay.jetty.Server;import
org.mortbay.jetty.bio.SocketConnector;import
org.mortbay.jetty.webapp.WebAppContext;import
org.mortbay.jetty.webapp.WebInfConfiguration;import
org.mortbay.jetty.webapp.WebXmlConfiguration;
public class Start {
public static void main(String[] args) throws Exception { Server server =
new Server(); SocketConnector connector = new SocketConnector(); //
Set some timeout options to make debugging easier.
connector.setMaxIdleTime(1000 * 60 * 60); connector.setSoLingerTime(-1);
connector.setPort(8080); server.setConnectors(new Connector[] { connector
}); WebAppContext bb = new WebAppContext(); bb.setServer(server);
bb.setContextPath("/"); bb.setWar("target/MY_APPLICATION");
bb.setConfigurationClasses(new String[] { WebInfConfiguration.class.getName(),
WebXmlConfiguration.class.getName() }); bb.setParentLoaderPriority(true);
// START JMX SERVER // MBeanServer mBeanServer =
ManagementFactory.getPlatformMBeanServer(); // MBeanContainer mBeanContainer
= new MBeanContainer(mBeanServer); //
server.getContainer().addEventListener(mBeanContainer); //
mBeanContainer.start(); server.addHandler(bb);
try { System.out.println(">>> STARTING EMBEDDED JETTY SERVER, PRESS
[ENTER] TO STOP"); server.start(); System.in.read();
System.out.println(">>> STOPPING EMBEDDED JETTY SERVER");
server.stop(); server.join(); } catch (Exception e) {
e.printStackTrace(); System.exit(100); } }}
_________________________________________________________________
The New Busy is not the old busy. Search, chat and e-mail from your inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_3
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]