jetty « jersey « Java Enterprise Q&A





1. Disabling client cache from Jetty server for REST requests    stackoverflow.com

I have a REST Java server implemented with Jersey running on Jetty. It seems that certain browsers (IE7) internally caches all requests made to the server. What I would like to ...

2. exception when invoking ehcache-server within embedded Jetty via Cargo: WebApplicationProviderImpl could not be instantiated    stackoverflow.com

I'm working on a web application that uses a standalone ehcache server to cache certain data. The ehcache server is accessed via REST (as opposed to SOAP). For functional testing purposes, I ...

3. HTTP 303 redirect is not working for my browsers    stackoverflow.com

My jersey resource is sending this to the client browsers namely (safari & chrome) but the browsers are not redirecting. Is there anything wrong with my HTTP response below ?

HTTP/1.1 303 ...

4. How do I force Jersey to load it's services?    stackoverflow.com

I'm having trouble with a jersey application running on a jetty server that will take up to 30 seconds to start. I don't know what causes this behaviour, and I'm unsure ...

5. Jersey 1.4 working fine. Jersey 1.3 returning http status 405 Method Not Allowed when running in Jetty    stackoverflow.com

I am writing a simple web service that is going to run in jetty7.2 be embedded as a plugin in a giant application. I ran into a classloader LinkError problem with ...

6. Jersey resource classes not being exported    stackoverflow.com

I'm using embedded Jetty with Jersey to form a REST API. When I export from Eclipse using the Runnable JAR wizard, if I select "Package required libraries into generated JAR", when I ...

7. How to return 503 server busy based on cpu/memory usage or pending requests?    stackoverflow.com

I am working on high performance web application that uses jetty and jersey for REST. I am trying to find the best way to return 503 if CPU load, memory bandwidth ...

8. Access external objects in Jersey Resource class    stackoverflow.com

I have the scenario where I have the following embedded jetty server:

    Server server = new Server(8080);
      Context root = new Context(server, "/", ...

9. Jersey with embedded Jetty + PostReplaceFilter    stackoverflow.com

I am using Jersey with an embedded Jetty according to the documentation http://wiki.eclipse.org/Jetty/Tutorial/Embedding_Jetty. This works fine so far. What I'd like to add now is usage of the PostReplaceFilter ...