-
Feature Request
-
Resolution: Done
-
Major
-
3.0.23.Final, 3.1.3.Final
String marshalling for String based @*Param (@QueryParam, @MatrixParam...) should be supported by default as it is already done for other primitive types.
Example:
@GET
@Produces("application/char")
public String doGet(@QueryParam("char") char v) {
Assert.assertEquals(QueryParamAsPrimitiveTest.ERROR_MESSAGE, 'a', v);
return "content";
}