Christian Kaltepoth
Christian Kaltepoth
I basically agree that providing another method for setting query parameters using a list could be beneficial. I was just trying to understand what users currently have to do as...
Well, wouldn't it be easy to get the `MultivaluedMap` for the current request, replace the single query parameter and then loop over the multimap and call `UriBuilder.queryParam(String, Object...)` for each...
@spericas I'm wondering why constructor injection was specified as being OPTIONAL back then. Is there any special reason why it wasn't defined as mandatory.
I'm still not sure if I fully understand what you mean with "consistent API". If you want to get the query parameters of the current request, modify it and pass...
So you think that something like `UriBuilder.queryParams(MultivaluedMap)` would help? In this case we would also have to add `UriBuilder.replaceQueryParams(MultivaluedMap)` for consistency with other methods. To be honest, I'm not super...
> We could strengthen this in the spec, but is it really worth adding more implementation complexity? I much rather spend energy moving to a CDI-as-only-DI world. Maybe I'm missing...
> If 2.2 already largely moved to CDI, is it still necessary for 3.0 then? If the real issue is the implementation complexity of combining CDI's `@Inject` with JAX-RS's `@Context`...
@eclipse-ee4j/ee4j-jaxrs-committers Other thoughts?
Regarding `abortWith`: This method is provided by `ContainerRequestContext`, which is actually a parameter object for the `ContainerRequestFilter` API. The API docs of `ContainerRequestContext` state: > A mutable class that provides...
My guess is that this RFC is abandoned. But I may be wrong about this. However, it is listed on the [HTTP WG site](https://httpwg.org/specs/) and in the [IANA HTTP Status...