Jetty is a widely used web container written in Java. See "about the jetty tag" for initial help.
33
votes
4answers
15k 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 ...
17
votes
8answers
7k 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 ...
15
votes
6answers
725 views
What are the Common Practices for Java Development on Linux?
I'm trying to migrate from Windows to Linux as a Java development platform, and while the transition has generally been pretty painless, there are a few points of uncertainty that I'd like some ...
15
votes
2answers
2k 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 ...
13
votes
3answers
4k 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 ...
11
votes
3answers
2k 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 ...
10
votes
4answers
5k 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?
9
votes
2answers
2k views
Scala/Lift Framework runs just over jetty web server?
I am new with Lift and want to know if it is developed to just run with Jetty but no other web server. Any idea?
9
votes
5answers
2k views
GWT/Eclipse/Jetty issue: Jasper can't resolve tag libraries
I'm trying to get GWT Hosted mode working in Eclipse, à la this HOWTO. Servlets work fine, as does my GWT code, but all my JSPs fail because with errors such as the following:
[WARN] ...
8
votes
3answers
5k 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 ...
8
votes
2answers
2k 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 ...
8
votes
4answers
4k views
How to configure nginx to work with Jetty6 webserver?
It seems that nginx is used with php, ruby and python.
Anyone has an example of how to setup nginx to work with jetty/tomcat in backend?
Thanks.
7
votes
2answers
58 views
+100
Slow transfers in Jetty with chunked transfer encoding at certain buffer size
I'm investigating a performance problem with Jetty 6.1.26. Jetty appears to use Transfer-Encoding: chunked, and depending on the buffer size used, this can be very slow when transferring locally.
...
7
votes
1answer
542 views
Specifying the Jetty port in SBT 0.10
I need to run the embedded Jetty on port different to the default 8080, using SBT 0.10
The question was answered here for SBT 0.7 - In which file do I need to add an override for the jetty port when ...
7
votes
2answers
1k views
Maven: How to use jetty:run in a multi-module Maven project, without needing to install
I'm new to Maven. I have a multi-module maven 2 project that has the following structure (somewhat simplified):
Project (POM packaging)
|
+-- Module1 (JAR)
| |
| +-- src
| ...
7
votes
1answer
2k views
Java RESTful Web Service Tutorial with Eclipse and Jetty
I want to build a RESTful Web Service in Java, deployed using Jetty and developed using Eclipse as IDE.
I was wondering if anyone could post or link me to a beginner tutorial (even a "hello world!" ...
7
votes
4answers
1k views
How to deploy a Scala project from Eclipse?
I have a Scala project in Eclipse that I need to package up so I can deploy it to a server. It's based on Jetty but it runs as a standalone application. It contains Scala classes, Java classes and a ...
7
votes
4answers
8k 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 ...
6
votes
2answers
246 views
Auto-reloading files in Scala/Lift/SBT .11?
In SBT .7, you could do
~jetty-run
in order to get your files to auto compile and reload the web app whenever something changes. In SBT .11, You can do
~container:start
which also re-compiles ...
6
votes
4answers
2k views
Jetty or Tomcat?
It would appear that Jetty has a long list of high profile applications that use it. What does Tomcat have going for it? As far as I can tell from looking at various wikis and messing with my IDE is ...
6
votes
6answers
1k views
Is Jetty ever used for production deployment?
Why would it be preferred over Tomcat?
Is your experience with big or little companies? Internal or external (customer/public facing) systems?
6
votes
3answers
1k views
Jetty Run War Using only command line
Is it possible to use only the command line to Run jetty with only a specified war file and context path.
Something like:
java -jar $jettyHome/start.jar -Dwar.location=myApp.war -DcontextPath=/myApp ...
6
votes
1answer
2k views
maven and lift using scala 2.8 : lift-mapper missing?
Newbie question since I'm not up to speed using
maven at all.
I'm trying to use scala + lift using scala 2.8, environment
is a win7 box if that matters.
I create a basic project using:
mvn ...
6
votes
3answers
2k views
Jetty startup delay
I'm trying to figure out what would be causing a 1 minute delay in the startup of Jetty. Is it a configuration problem, my application, or something else?
I have Jetty 7 (jetty-7.0.1.v20091125 25 ...
6
votes
4answers
4k 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). ...
6
votes
5answers
1k views
comet HTTP patterns in Java
I'm writing/porting a C++ HTTP event server to Java. I'm wondering what are the best paradigms for implementing comet with Jetty, Tomcat, any other server, or natively.
Threaded
Continuations
NIO
...
6
votes
1answer
1k views
How scalable is Jetty?
Greetings! I wrote a highly scalable HTTP event (long-polling) server in C/C++ using libevent. However, it's messy, hardly portable, and lets face it: it's C. Let alone that I've been having some ...
6
votes
5answers
12k 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
2answers
1k views
Jasper in Jetty 6 throws exception for JSTL tag
I'm trying to run an application in jetty that runs fine in Tomcat 5.5. The app uses servlet 2.4 and JSP 2.0.
Jetty/Jasper is throwing this exception:
org.apache.jasper.JasperException: ...
5
votes
1answer
297 views
How can I deploy a web app with sbt 0.11?
it seems that both the jetty-run and jetty commands are missing from SBT 0.11. Either that or I am doing something very wrong. I am simply running sbt, then trying to run jetty-run. I have defined a ...
5
votes
1answer
835 views
Installing Scala 2.9.1/Lift 2.4-M4 using sbt 0.11.0
I am learning to do web development in Scala. currently trying to install the newest version of Scala/lift with sbt 0.11 in MAC OSX. I so far have already done the following:
1. Installed Scala 2.9.1 ...
5
votes
2answers
207 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
1answer
445 views
Combining Akka, Spray, and embedded Jetty
I'm trying to create a standalone JAR containing Akka, Spray, and Jetty. Ideally I distribute the entire application in that single file, without any external files whatsoever.
I understand how to ...
5
votes
2answers
405 views
Solving a PermGen issue on redeploy with Jetty 7
After a couple of days of debugging I have managed to have a medium-to-large web application redeploy successfully on Tomcat 6.0.32 without any PermGen leaks. I saw the PermGen drop after it filled, ...
5
votes
1answer
183 views
Cleaning up Jetty - Removing 'unnecessaries' things
I'm used to use Jetty as my web container.
What I did on my install steps is get the original tar ball and cleanup some directories and files from it.
What I want to raise here, is:
What are ...
5
votes
2answers
466 views
Alternatives to Apache HttpComponents?
So, I've come to the conclusion that Apache HttpComponents 4 is one of the most overwrought APIs I've ever come across. Things that seem like they should be simple are taking hundreds of lines of ...
5
votes
1answer
2k views
What's the difference between Jetty and Netty?
What is the main difference between Jetty and Netty?
Netty is part of Jboss, but is it the default web server container?
Does Netty support Servlets 3.0?
5
votes
1answer
229 views
Jetty servlet does not detect that client has disconnected
This is the code of the servlet that I deployed to Jetty:
public class StreamServlet extends HttpServlet
{
public void doGet( HttpServletRequest request,
HttpServletResponse response ) throws ...
5
votes
2answers
1k views
Error Starting Jetty-Service (Solr)
Update: I installed the 32bit JDK and the service starts fine now. No idea why though. The machine it was failing on was 64bit...
Update2: So installing the 32bit JDK will allow the service to ...
5
votes
1answer
1k 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 ...
5
votes
2answers
2k views
Free heap size does not increase in Maven
When I run maven-jetty-plugin, I run next command:
mvn -DMAVEN_OPTS="-Xmx1024m -Xms512m" -Djetty.port=8080 jetty:run
but when I try to output free heap size with
Long heapFreeSize = ...
5
votes
1answer
387 views
problem with jetty classpath when working with gwt and jsp
Hi
I have created an ajax application using GWT.
And I have created just one jsp file that connects to my data access layer to get some information to show them to user.
In my jsp file I have ...
5
votes
1answer
330 views
Jetty: servlets vs handlers
I am trying to understand Jetty;
Tell me please:
1) When is it better to use Servlets and when Handlers?
2) Can i use Connectors with Servlets for "thread-per-request model"?
Thank you!!!
5
votes
2answers
344 views
Accelerate application startup on Jetty
I have a small web application configured with Guice, Jersey and EclipseLink, and run this application on jetty (8.0.0.M1) during development. There are about 10 (small) JPA managed classes (entities ...
5
votes
4answers
624 views
How do develop a Java web application without having to deploy all the time
I've set up a simple Eclipse 3.5/Jetty 6.1 web app which returns hello world. It works. This is on Windows and uses the "Jetty Generic Server Adapter". I have auto deployment working so that it ...
5
votes
3answers
4k 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.
5
votes
1answer
558 views
Is Comet easier in ASP.NET with Asynchronous Pages?
I don't mean to ask, is Comet easier in ASPNET than in Jetty? I mean, is Comet easier inn either ASPNET or Jetty, as compared to other alternatives? I think the asynch capabilities of ASP.NET and ...
5
votes
1answer
747 views
Serving static content from a jarfile with Jetty?
This should be fairly easy, but for some reason nearly everything I try just seems to hand out a 'not found' error when I hook it up to a web browser.
I've got a single static context, and for the ...
5
votes
1answer
868 views
Running resource filters when using jetty:run
I'm using resource filtering on jsps, based on profiles. I'm also developing locally using mvn jetty:run, but the filtering phase does not run.
How can I perform filtering using the jetty plugin?
...
5
votes
1answer
901 views
Running a J2EE/Grails app as a windows desktop application
I'd like to do the following but am not sure if it can be done and if so how. Create a Grails application on my local machine and test it. Then somehow package it up along with the Jetty server, and ...