I have the following code: Server server = new Server(9090); final URL warUrl = Main.class.getClassLoader().getResource(\"com/domain/webapps/app\");
EDIT: I think I should clarify my intent... I\'m trying to simplify the development iteration cycle of write-code >> build WAR >> deploy >> refresh >> repeat. I\'d like to be relatively independent o
CruiseControl does not start any more (only known change was adding new memory to the machine.) Ok, it seems to start: Calling the web gui brings:
I am using an embedded jetty for my Wicket projects with no problem since wicket does not use JSP.Until I run across a task to create a basic Dynamic Web Application using an embedded jetty applicatio
I\'m trying to use Jetty in the simplest way possible. I have started by running the walkthrough from the Jetty@Eclipse documentation, which basically looks like that:
I am creating a war file (progressReporter.war) and i am deploying it on Jetty7.2.2.v20101205. I have a sysout on contextInitialized method which i should see when jetty starts up. I am starting jetty
I\'m using embedded Jetty to launch a standard Java webapp.My launcher is something like this: import org.eclipse.jetty.server.Server;
The filter I wrote threw ClassCastException [Ljava.security.cert.X509Certificate; cannot be cast to java.security.cert.X509Certificate
We have decided that all our modular code should use JSR-330 dependency injection and we have used Guice 2.1SVN or Java EE 6 CDI to do the actual injection in several projects and has worked very well
I am using Jetty for the first time to deploy a GWT web app connecting to a Restlet API and I am trying to understand the best way to use it.