jersey
jersey copied to clipboard
This is no longer the active Jersey repository. Please see the README.md
In attachments you can see a project which uses: Jersey, Weld, Jetty and jersey bean validation module. The problem is, when I've upgraded Jersey from **2.14** to **2.23.1** my custom...
When using JerseyTest with JUnit 5 a null pointer exception gets thrown: ``` java.lang.NullPointerException at org.glassfish.jersey.test.JerseyTest.target(JerseyTest.java:564) at org.glassfish.jersey.test.JerseyTest.target(JerseyTest.java:578) ``` The issue seems to be that the setup() and tearDown() functions...
Few years ago I donated an implementation of `MessageBodyReader` and `MessageBodyWriter` using NetBeans HTML/Java JSON persistence library as an `htmljson` incubating module. Time has passed and this library is now...
I configured Grizzly + Jersey2 and I started to use "jersey-cdi2-se" but when jersey-bean-validation is included, it didn't work First, at compile time I getting this Error `Exception in thread...
Jersey's reactive client has implementations for Guava and RxJava. This is an implementation using [Project Reactor](https://projectreactor.io). The interface it exposes is a [Reactive Streams ](http://www.reactive-streams.org/) Publisher. This should make it...
Using jersey-container-servlet 2.25 and jersey-media-json-jackson 2.25 (which uses jackson 2.8.4). The application ResourceConfig includes: ```java // gzip support register(EntityFilteringFeature.class); EncodingFilter.enableFor(this, GZipEncoder.class); // jackson serializer register(JacksonFeature.class); // application classes packages("com.example"); ```...

Running dropwizard 1.0.5 with jersey 2.23.2\. In my application when I register my LoggingFeature in the jersey environment as shown below: ``` **ApiApplication.java**@Override public void run(ApiConfiguration apiConfiguration, Environment environment) throws...
I want to implement a partial update with PUT (don't suggest PATCH to me, not going to happen :P). When using normal beans you don't differentiate between null and ascent....
Hi, In our use case, we need to modify the HttpClientBuilder (regarding SSL Context, and misc) and also build the client using our own way (instead of using HttpClientBuilder.build() ).....