For a pet project I would like to have an embedded Jetty run a Spring Web MVC app. I've used Spring in web containers (where it's easy to tell "where to start") and I've used embedded Jetty without Spring.

It feels a bit like the chicken or the egg problem if I want both to work together. What is the best way to organize the project? In other words, what shall I put in main()? Should it be a Spring app that happens to have Jetty as a bean (what about contexts then?)? Or should I start Jetty alone and plug Spring in via servlet listener? What are the caveats?

link|improve this question

79% accept rate
feedback

2 Answers

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);
        }
    }
}
link|improve this answer
1  
I can't believe this is being upvoted. The question was how you design a Spring app with embedded Jetty - whether it should be Spring-in-Jetty or Jetty-in-Spring, and what caveats either of the solutions has. I was not only asking how to embed Jetty (let alone dependency on src - there are better ways to do it described even at SO). – Konrad Garus May 9 '11 at 9:03
feedback

Jetty in a Spring container is used to start webapp, springified or not. The webapp and your webapp don't have the same Spring context without tricks. So, you have to create a Jetty server in your main, add your webapp and start the server. The best way is using a web.xml like a common JEE server, and add this descriptor to your Jetty server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.