We were using CXF where we had an option to set jaxrs properties to make 
queries case insensitive 

<jaxrs:properties>
   <entry key="org.apache.cxf.http.case_insensitive_queries" value="true" />
</jaxrs:properties>


We are moving to fasterxml and don't find any such possibility 


When i invoke my restService below with 
https://localhost:26000/app/test/v1/Profile.json?ID=12321 it works but it 
doesn't with  https://localhost:26000/app/test/v1/Profile.json?id=12321



@WebService
@Path("/v1/Profile.json")
public interface ProfileWebService {
  
   @GET
   @Produces(MediaType.APPLICATION_JSON+ ";charset=utf-8")
  
   public Response getProfile( @QueryParam("ID") String Id,@Context UriInfo 
info)
         throws WebApplicationException;
}


Any specific configuration can be done.

-- 
You received this message because you are subscribed to the Google Groups 
"jackson-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jackson-user+unsubscr...@googlegroups.com.
To post to this group, send email to jackson-user@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to