Tomcat to Jetty Migration Guide

Alguém conheçe algum Guia de Migração de Aplicações do Tomcat para o Jetty ?

Obrigado!

Estou querendo o mesmo!
Como instalar como serviço no windows ?

To precisando tbem.

alguém ???

realmente precisa de um guia? só ter o jetty rodando e fazer o deploy da sua app onde tá o jetty, claro que as configs de contexts, JNDI etc vc terá que configurar no jetty.

bem, eu fiz assim:

1 - minha app empacotada num WAR está no diretório: [JETTY]/webapps/myapp.war;

2 - adaptei meu pool de conexão que estava no Tomcat assim:

<!-- The contents of this file will be loaded for each web application -->
<Context>

    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
	
    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
    <!--
    <Manager pathname="" />
    -->

    <!-- Uncomment this to enable Comet connection tacking (provides events
         on session expiration as well as webapp lifecycle) -->
    <!--
    <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
    -->
	<Resource name="jdbc/vso" auth="Container" type="javax.sql.DataSource"
               maxActive="100" maxIdle="30" maxWait="10000"
               username="root" password="administrator" driverClassName="com.mysql.jdbc.Driver"
               url="jdbc:mysql://localhost:3306/vso"/>

</Context>

 [TOMCAT]/conf/context.xml

Para:

<?xml version="1.0"?>

<Configure class="org.eclipse.jetty.webapp.WebAppContext">
   
   <New id="vsOrganicosDS" class="org.eclipse.jetty.plus.jndi.EnvEntry">

     <Arg>jdbc/vso</Arg>
     <Arg>
       <New class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<Set name="driverClass">com.mysql.jdbc.Driver</Set>
        <Set name="jdbcUrl">jdbc:mysql://localhost:3306/vso</Set>
        <Set name="user">root</Set>
        <Set name="password">administrator</Set>
		<Set name="maxPoolSize">30</Set>
		<Set name="maxIdleTime">300</Set>
		<Set name="testConnectionOnCheckin">true</Set>
		<Set name="preferredTestQuery">select sysdate()</Set>
       </New>
     </Arg>
   </New>
   
</Configure>

[JETTY]/webapps/myapp.war/jetty-env.xml

Fiz o start e pronto!

Detalhe: de Tomcat 6 para Jetty 6