Top "Embedded-jetty" questions

Jetty is a widely used web container (server) written in Java and produced by Eclipse.

Reverse Proxy Java

I am working with a Java web application and I would like to have a reverse proxy masking some of …

java proxy reverse-proxy embedded-jetty embedded-tomcat-7
Programmatic Jetty shutdown

How to programmatically shutdown embedded jetty server? I start jetty server like this: Server server = new Server(8090); ... server.start(); server.…

java jetty embedded-jetty
Can't get Jetty to scan for annotated classes

I have an application with an embedded jetty server which I'm starting up like this (placed in main() and launched …

annotations jetty embedded-jetty
How to gracefully shutdown embeded jetty

I have an application runs on an embedded jetty server. Now i want to start/stop the server as a …

java jetty embedded-jetty
Embedded vs Stand alone Tomcat ( HTTP ) server

I am working on a new project which would be a web application with a front end UI and a …

tomcat jetty embedded-jetty httpserver embedded-tomcat-7
What's the difference between a ServletHandler and a ServletContextHandler in Jetty?

I'm trying to get started with an embedded Jetty server. I just want to map requests to different servlets based …

java servlets jetty embedded-jetty
Jetty 8 set "session-timeout" without web.xml?

I'm trying to set the session-timeout value in an embedded Jetty 8 instance. With embedded Jetty, how can I programmatically set …

jetty session-timeout embedded-jetty
In the Jetty server how can I obtain the client certificate used when client authentication is required?

It is very easy to set up an embedded Jetty server that requests client authentication: One just needs to add …

java ssl embedded-jetty authentication
No multipartconfig for servlet error from Jetty using scalatra

I am trying to unit test an upload call but I get this error for the following code: @MultipartConfig(maxFileSize = 3145728) …

unit-testing rest embedded-jetty scala-2.10 scalatra
How do I configure embedded jetty server to log all requests?

I want to log all soap requests to my server. The server instance is an embedded jetty server. Is there …

java jetty embedded-jetty