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

`HttpChunkedInput` needs to be flushed so that it can read input immediately. Otherwise, all writes are buffered until the response is fully written, which overflows the buffer if enough data...

Utilizing the new(ish) `@RequestScope` annotation causes integration issues as Spring is registering multiple bean names when this annotation is present. You now end up with `originalBeanName` and `scopedTarget.originalBeanName` as bean...

I am seeing the below `IllegalStateException`s in our integration tests with an async REST service and so far we don't have any reliable reproduction. ``` java.lang.IllegalStateException: s=DISPATCHED i=false a=NOT_ASYNC at...

asynchronous

Copied from https://java.net/jira/browse/JERSEY-3159 IE11 and Microsoft Edge both still send non-standard conforming filename: ``` -----------------------------7db13314200d0 Content-Disposition: form-data; name="file"; filename="C:\tmp\test.txt" Content-Type: application/octet-stream ``` What my application gets when reading the filename...

Support injection of `HttpServletRequest` and `HttpServletResponse` in addition to the Jetty-specific `Request` and `Response` objects, which already implement those interfaces. (I am listed for Jersey in the [Oracle Contributor Agreement](http://www.oracle.com/technetwork/community/oca-486395.html#w)...

Jersey depends on javaee/metro-mimepull to parse multipart request header (maybe not accurate but doesn't matter) and there is a long-standing unsolved bug (javaee/metro-mimepull#7) in it. So Jersey has the same...

As the docs https://jersey.github.io/documentation/latest/user-guide.html#deployment.classpath-scanning said, i set `ServerProperties.METAINF_SERVICES_LOOKUP_DISABLE` to `true` and regist a self defined `ComponentProvider` named `TestComponentProvider` as follows: ```java import org.glassfish.jersey.jackson.JacksonFeature; import org.glassfish.jersey.server.ResourceConfig; import org.glassfish.jersey.server.ServerProperties; public class ApplicationConfig...

Type: Bug

The PR/change introduced in #3124 causes connection pooling to break. When response.close()([https://github.com/jersey/jersey/commit/0d1326dee69d9c693014184bea3e4a44b323daee#diff-91ece5335d0cdc9321a099df1caec54fR643](https://github.com/jersey/jersey/commit/0d1326dee69d9c693014184bea3e4a44b323daee#diff-91ece5335d0cdc9321a099df1caec54fR643)) is called this causes Apache HttpClient to not release the connection back to the pool but close it...

Priority: Major
Type: Bug
Component: connectors

This pull requests adds support to implement proxy clients on resources that use JAX-RS `@BeanParam` annotation. Main change is introduced in the new method `extractParamsFromBeanParamClass()` that handle bean class info....

OCA

I'm using Jersey to developement a REST webservice. In version 2.24 everything is ok, but in versions 2.25, 2.25.1 and 2.26, i'm having problems. My pom.xml: org.glassfish.jersey.containers jersey-container-grizzly2-http 2.26 org.glassfish.jersey.containers...