jersey icon indicating copy to clipboard operation
jersey copied to clipboard

This is no longer the active Jersey repository. Please see the README.md

Results 100 jersey issues
Sort by recently updated
recently updated
newest added

Hi, We are user of the jersey-apache-connector project. The endpoint of the project is the ApacheConnector class which does not allow extending/modification. But in our case we need to be...

file `jersey-1.19.1-PUT-401-bug.groovy` ```groovy @groovy.lang.Grab('com.sun.jersey:jersey-bundle:1.19.1') import com.sun.jersey.api.client.Client import com.sun.jersey.api.client.ClientHandlerException import com.sun.jersey.api.client.ClientRequest import com.sun.jersey.api.client.ClientResponse import com.sun.jersey.api.client.UniformInterfaceException import com.sun.jersey.api.client.filter.ClientFilter // If PUT or POST request with any payload will cause 401 response //...

Jersey 1.x

Current implementation of MethodList explicitly ignores bridge methods: https://github.com/jersey/jersey/blob/master/core-server/src/main/java/org/glassfish/jersey/server/model/MethodList.java#L123-L127 Unfortunately, since Java 6 bridge methods are generated for public methods inherited from non-public superclasses due to an issue with reflective...

Hi, I am getting the following error while running mvn install on Ubuntu 16.04/x86_64 Failed tests: AggregatingTrimmerTest.simpleCheck:71->AbstractNanosReservoirTest.checkInNanos:65->AbstractNanosReservoirTest.checkInNanos:88 Total count does not match! expected: but was: AggregatingTrimmerTest.testAggregatingTrimmer:91->AbstractNanosReservoirTest.checkInNanos:65->AbstractNanosReservoirTest.checkInNanos:88 Total count does not...

I am using jersey backend with react js as the frontend. Since all 404s are redirected to index.html in react, so I added a errorPageErrorHandler for 404 as index.html. Though...

When deploying the cdi-webapp.jar for Tomcat I get the exceptions pasted below. [cdi-webapp example readme](https://github.com/jersey/jersey/tree/master/examples/cdi-webapp) Tag: 2.26-b04 Tomcat: 8.5.9 Build command: `mvn package -am -pl .\examples\cdi-webapp\ -DskipTests -P tomcat-packaging` WAR's...

## Description Using jersey client with apache connector from multiple threads concurrently results in threads that wait forever ## How to reproduce Run the following code ``` import static javax.ws.rs.HttpMethod.GET;...

It seems like `jersey-media-json-jackson` is not up to date with the latest JAX-RS 2.1 features. I tried creating the following resource method: @GET @Produces({"application/json" }) @Path("async") public CompletionStage asyncHello(@NotNull @PathParam(value...

Component: media

https://github.com/jersey/jersey/blob/5140ca13c57b4818600b79361c2f3347d934e8a7/core-server/src/main/java/org/glassfish/jersey/server/ApplicationHandler.java#L702 Issue was seen on Jersey 2.17, Some of the threads takes longer time to respond in this method, time delay caused by this is measured from newRelic tool and...

performance
ApplicationHandler

This makes sure we try to fetch an application context provided through the contextConfig, even when running in a web application context. ``` if (ctx == null) { // still...

Waiting for OCA