If I understood your question correctly;
you can add below to your pom.xml if you are using maven or add those 2 jar files to the classpath if not. And you may use the below class to start jetty.
Update the war location to your needs. I am currently using this with several spring integrated applications and no need to do additional config for spring just for jetty.
<dependency>
<groupId>jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.0.2</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>6.0.2</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
import org.apache.log4j.Logger;
import org.junit.Ignore;
import org.mortbay.jetty.Server;
import org.mortbay.jetty.webapp.WebAppContext;
public class EmbeddedServer {
private static final int DEFAULT_HTTP_PORT = 8090;
private static final String WAR_LOCATION = "src/main/webapp";
private static Logger logger = Logger.getLogger(EmbeddedServer.class);
public static void main(String[] args) {
try {
Server server = new Server(DEFAULT_HTTP_PORT);
WebAppContext webAppContext = new WebAppContext();
webAppContext.setContextPath("/");
webAppContext.setWar(WAR_LOCATION);
webAppContext.setServer(server);
server.setHandler(webAppContext);
server.start();
} catch (Exception e) {
logger.error("Error when starting", e);
}
}
}