Jetty is a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.
61
votes
3answers
32k views
Tomcat VS Jetty [closed]
I'm wondering about the downsides of each servers in respect to a production environement. Did anyone have big problems with one of the features? Performance, etc. I also quicky took a look at the new ...
3
votes
3answers
614 views
How to run multiple instances of jetty with maven
So, what I want to do is configure maven plugin jetty to run multiple - in my case two - instances of jetty server on different ports and with different apps.
So, I want to have something like:
...
1
vote
1answer
3k views
How to force Jetty to ask for credentials with BASIC authentication after invalidating the session?
I'm using jetty 6.1.22 with BASIC authentication as my login mechanism. The first time I log into the web app, the browser requests the username and password.
If it try to log out using a ...
36
votes
11answers
18k views
Executable war file that starts jetty without maven
I'm trying to make an "executable" war file (java -jar myWarFile.war) that will start up a Jetty webserver that hosts the webapp contained in the WAR file I executed.
I found a page that described ...
21
votes
6answers
13k views
maven jetty plugin - how to control vm arguments?
How to set vmargs for jetty runned from maven-jetty-plugin?
I need for example to pass -Xmx argument to Jetty which run as maven-plugin (maven-jetty-plugin) by "mvn jetty:run" command.
3
votes
5answers
6k views
Maven's jetty plugin SSL configuration issue
I'm using Jetty's plugin for Maven, version 7.0.0.pre5, but I have issues configuring it to have a SSL Connector. Whenever I start the application, it fails stating that the requested implementation ...
2
votes
4answers
948 views
Getting HTTP 500 when running servlet in Jetty
I have a servlet that was running fine until a few days ago. But the only thing that I've changed is the nexus repo I'm using for maven. I'm running the servlet via mvn jetty:run
But when I try to ...
13
votes
3answers
12k views
Remote debug Jetty (no mvn, no plugins)
Past scenario
- Work with Tomcat and start in debug mode and Remote Debug with Eclipse.
- Define a port and connect with eclipse in this debug/remote port.
- Use to debug servers in other ...
23
votes
4answers
9k views
Debugging Scala code with simple-build-tool (sbt) and IntelliJ
What's the easiest way to debug Scala code managed by sbt using IntelliJ's built-in debugger? The documentation at http://code.google.com/p/simple-build-tool/wiki/RunningSbt lists commands for running ...
12
votes
5answers
9k views
“PWC6345: There is an error in invoking javac.” error when using Jetty WTP plugin to deploy a JSP page on Jetty
I'm trying to deploy a JSP-page on Jetty, using the Jetty WTP plugin for Eclipse. But I get the error below. It looks like Jetty can't find javac. Is there any settings I have to do for the Jetty WTP ...
7
votes
3answers
931 views
Standard form authentification Java servlets
What is the standard way of doing form authentication with Java Servlets?
Since now I have implemented that myself using a simple POST HTML form:
checking the sent parameters against the database
...
11
votes
2answers
4k views
Jetty Maven Plugin is ignoring custom webdefault.xml
I'm trying to get around the common issue of Jetty locking static files on Windows with the technique of setting useFileMappedBuffer to false in webdefault.xml. Unfortunately, every time Jetty is not ...
4
votes
2answers
9k views
Adding classpath to jetty running in maven integration-test
I'm trying to set up integration tests for a Maven project that produces a war file. (As seen here http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin/.) However I the war file requires a bunch ...
3
votes
1answer
6k views
Jetty webserver security
I have a website powered by Jetty.
I'd like to make the site password protected (or similar).
Is there a way to do this by configuration alone (without touching the code).
All help much ...
6
votes
1answer
8k views
could not find Factory: javax.faces.context.FacesContextFactory
I notice that when trying to setup my JSF 2 webapp running on jetty, i have this error :
java.lang.IllegalStateException: Application was not properly
initialized at startup, could not find ...
12
votes
4answers
10k views
How can I prevent spring-security from appending ;jsessionid=XXX to login redirects?
When an unauthenticated client requests a URL that requires a non-anonymous access level as defined in security-config.xml, spring security sends an HTTP redirect to our login page (e.g. /login). ...
8
votes
2answers
13k views
Embedded jetty with Jersey or resteasy
I want make RESTful services using embedded jetty with JAX-RS (either resteasy or jersey).
I am trying to create with maven/eclipse setup.
if I try to follow ...
15
votes
2answers
5k views
How do I deploy multiple peer webapps from a parent pom
I have a set of web apps that I manage that I am trying to move to maven.
/pom.xml // parent pom
webapp1/pom.xml // configured to point to parent
webapp2/pom.xml // peer of ...
6
votes
8answers
2k views
3
votes
7answers
4k views
Web User Interface for a Java application
I'm trying to create a web user interface for a Java application. The user interface is going to be very simple, consisting of a single page with a form for users to pose their queries, and a results ...
11
votes
5answers
25k views
IOException: Too many open files
I'm trying to debug a file descriptor leak in a Java webapp running in Jetty 7.0.1 on Linux.
The app had been happily running for a month or so when requests started to fail due to too many open ...
6
votes
1answer
4k views
hot deploy in embedded jetty
I have a Spring Roo project and I use mvn jetty:run to run my app.
The only problem is changes to the *.java classes do not hot deploy, while changes to *.jspx hot deploy fine.
So how can I configure ...
4
votes
4answers
5k views
Jetty Cross Origin Filter
I've configured Jetty's cross origin filter, but I continue to get the following error. Does anyone know what is wrong and how to fix it? Below the error message is my override descriptor (i.e. ...
2
votes
1answer
2k views
Configure Spring Security on embedded Jetty in Spring
I have a Spring beans definition file, as below
<bean id="jettyZk" class="org.eclipse.jetty.server.Server" init-method="start" destroy-method="stop">
<!-- properties, threadPool, ...
2
votes
1answer
978 views
Running GWT Speedtracer without Jetty
We are trying to run the GWT (2.1) Speedtracer, but have trouble with it, since Jetty doesn't accept our JDBC resources (they work fine in Tomcat) - probably because the JAR containing the drivers is ...
5
votes
4answers
4k views
Jetty 8 + EJB 3.1 + JTA + CDI + JPA 2 stack?
Can anyone tell me if it is currently possible to "glue together" a partial Java EE 6 Web Profile over Jetty?
I've found a lot of articles about integrating standalone EJB 3 containers, JTA ...
3
votes
4answers
2k views
Maven jetty plugin - delay when starting in background mode
I start a jetty server on linux using
nohup mvn jetty:run &
to run it in background and to stay when I quit from the console. Usually (mvn jetty:run) it starts in seconds, but in this case it ...
1
vote
2answers
1k views
Unit testing JSPs in embedded mode
I am in process of building up a small framework that does unit testing for JSPs. These JSPs have some custom tags, otherwise they are not any special.
Although there are numerous Java unit testing ...
8
votes
1answer
4k views
Serving static files w/ embedded Jetty
I'm trying to build a simple demo app with embedded Jetty that serves static files from a "html" directory that's a subdirectory of the current working directory. The idea is that the directory with ...
5
votes
5answers
11k views
cannot load JSTL taglib within embedded Jetty server
I am writing a web application that runs within an embedded Jetty instance.
When I attempt to execute a JSTL statement, I receive the following exception:
org.apache.jasper.JasperException: ...
2
votes
2answers
2k views
How to filter resources when using maven jetty plugin?
I have an XML file (urlrewrite.xml) that needs a property placeholder resolved. I enable Maven filtering to achieve this. This works fine for the assembled WAR file.
<build>
...
0
votes
1answer
215 views
How can I start Jetty from IntelliJ on Windows?
I am using Windows 7 and IntelliJ 12. I downloaded Tomcat and I can use it just fine.
I want to use Jetty as well. But I wasn't able to.
Is Jetty coming with IntelliJ ?
Can someone guide me how to ...
0
votes
1answer
256 views
How to start an aggregate jetty-server JAR from Ant?
Background
Disclaimer: I have very little experience with Java.
We previously used a wrapped version of Jetty 6 for on-demand static content (JS, CSS, images, HTML) during our Ant build so we can ...
0
votes
1answer
1k views
Access external objects in Jersey Resource class
I have the scenario where I have the following embedded jetty server:
Server server = new Server(8080);
Context root = new Context(server, "/", Context.SESSIONS);
root.addServlet(
...
7
votes
7answers
6k views
Form too Large Exception
When I send The Large File By Using Post Request The System Shows The Exception is
java.lang.IllegalStateException: Form too large1105723>200000
at ...
6
votes
3answers
701 views
Good Web Server/Servlet Container for Clojure Web Apps?
I am looking for a good production web server/servlet container for my compojure web appliction. What are the pros and cons of using Jetty or Tomcat or other server for a Clojure web app using ...
5
votes
2answers
2k views
org.apache.jasper.el.ELContextImpl cannot be cast to org.apache.jasper.runtime.ELContextImpl
I have a web service project implemented in java and it also contains jsp pages. I deploy it on jetty 8.1.5 on my machine and it works normally. But when I deploy on a windows server 2003 with jetty ...
3
votes
2answers
983 views
Jetty SslConnector's deprecated methods
SslConnector.java interface has been changed in the newest Jetty 7.3.1.v20110307.
Almost all off the methods have been marked as deprecated without mentioning the replacement interface or methods to ...
2
votes
2answers
412 views
AsyncContext and I/O error handling (when peer disconnects)
I'm implementing Server-Sent Events using Servlet 3.0's javax.servlet.AsyncContext interface.
However I can't understand how I should handle I/O errors like peer disconnect.
For a given AsyncContext ...
2
votes
2answers
1k views
How to use setThreadPool() in Jetty
I wanted to see how to use the setThreadPool() functionality. Let's say my main class is the following:
import javax.servlet.SingleThreadModel;
import org.eclipse.jetty.server.Server;
public class ...
1
vote
1answer
533 views
Jersey on Jetty on Android throws ContainerException: The ResourceConfig instance does not contain any root resource classes
I'm trying to run Jersey on Jetty on Android.
I've created an Android that instantiate a Jetty Server with a Jersey Servlet. Anyway when I start Jetty and visit a REST resource (in my case: ...
1
vote
2answers
2k views
Bind Jetty to IPv6 address
I am trying to bind Jetty to listen only to IPv6 address. I am using Jetty 7.4.2.v20110526.
my jetty.xml:
<Call name="addConnector">
<Arg>
<New ...
0
votes
1answer
89 views
Enabling SSL session for Jetty to speed up HTTPS requests
This is a follow up of my question here, where I found a big query time differences with HTTPS vs. HTTP requests: the larger the distance to the server was the bigger was this difference.
I found a ...
0
votes
0answers
18 views
Updating Label with a Config File
This might be a confusing question but I will try and explain it as best as possible.
I am using this class code to display "Hello World" to localhost:8080 using Jetty.
import ...
0
votes
2answers
499 views
Restlet 2.0.8 with the Jetty connecter doesn't resume SSL sessions, while the Simple connecter does
Does anyone know why this is, or how to fix it?
I'm using an android to connect via httpclient - the Simple connector resumes the connection just fine, but Jetty performs a new handshake each time ! ...
30
votes
2answers
4k views
How do I stop jetty server in clojure?
I am writing a web application using ring and clojure. I am using the jetty adapter for the development server and emacs/SLIME for IDE. While wrap-reload does help, run-jetty blocks my slime session ...
11
votes
4answers
16k views
Running Jetty 7 server in eclipse?
I'm trying to set up Eclipse to run and deploy my projects to a Jetty 7 server (the oldest version available from http://download.eclipse.org/jetty/). I've downloaded Jetty 7 and unpacked it, and ...
8
votes
2answers
6k views
Shortest code to start embedded Jetty server
I'm writing some example code where an embedded Jetty server is started. The server must load exactly one servlet, send all requests to the servlet and listen on localhost:80
My code so far:
static ...
16
votes
5answers
14k views
Running Jetty 7 as Windows Service
Did Jetty 7 drop support to run as a service using Java Service Wrapper?
What options do I have now?
22
votes
3answers
4k views
Jetty: To embed or not to embed?
What are the benefits of embedding jetty vs deploying your webapp(s) in jetty? If you are planning on deploying more than one web app, should you strictly stick with deploying a war file for each web ...
