jersey
jersey copied to clipboard
This is no longer the active Jersey repository. Please see the README.md
Hi all, needed additional Maven dependencies to make the quickstart web app run properly in Jetty 9.4.6.
As you likely have noticed, Oracle is in the process of transitioning Java EE and related projects to the Eclipse Foundation [1]. Jersey is included in this list of projects...
That would be a brilliant aggregate ``` @Value @Builder(toBuilder = true) @NoArgsConstructor(force = true) @AllArgsConstructor public class Changes { @Context Locale locale; @HeaderParam("Authorization") String token; @QueryParam("rewrite") String rewrite; @PathParam("id") String...
Working queries: `http://localhost:8080/dscs/v1/targetTypes/` `[ { "description": "ORACLE CORPORATION DATABASE", "name": "Oracle Database", "resourceGroupId": 1, "resourceGroupName": "Oracle Built-in", "targetTypeClass": "Database" } ]` `http://localhost:8080/dscs/v1/targetTypes/?fields=name` `[ { "name": "Oracle Database" } ]` `http://localhost:8080/dscs/v1/targetTypes/?fields=name,description`...
As per the comment here: https://github.com/jersey/jersey/commit/0d1326dee69d9c693014184bea3e4a44b323daee#diff-91ece5335d0cdc9321a099df1caec54fR640 > This change does not work with the org.apache.httpcomponents: httpclient: 4.5.1+ when using chunked transfer encoding. This is because they have changed the way...
### Description Given [the major breaking change around Jersey DI](https://jersey.github.io/documentation/latest/migration.html#mig-2.26), I have spent some time today in the attempt to migrate a simple web app based on Jersey 2.25.1 to...
To calculate the authentication string in org.glassfish.jersey.client.authentication.BasicAuthenticator the method org.glassfish.jersey.internal.util.Base64.encodeAsString() is used to do the Base64 encoding. Unfortunately this results in a ArrayIndexOutOfBoundException when the password contains non ASCII characters...
As part of the upgrade path from Dropwizard 0.x -> 1.x the jersey version was bumped to 2.25.1 What we've noticed is that across a number of our production services,...
Jersey doesn't allow me to inject CDI bean into my custom Validator. Sample code: ``` @ApplicationScoped public class AllowedWeightsValidator implements ConstraintValidator { @Inject private Localizer localizer; @Override public void initialize(AllowedWeights...
https://github.com/jersey/jersey/tree/master/examples/exception-mapping The link to the 'WebApplicationException and Mapping Exceptions to Responses' is wrong. https://jersey.github.io/documentation/latest/representations.html#d0e6352 is correct. Regards, Claudio