Ah...... I think I now understand... So..

This:

@ApplicationPath("/")
public class Foo extends Application {
}

will mess around with this:

public class Routes extends AbstractRoutingModule {

@Override
public void configuration() {
    route()
           .from("/")
           .on(RequestMethod.GET)
           .to(Home.class).index();
    }
}

Or am I wrong ?

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira