-
Bug
-
Resolution: Won't Do
-
Major
-
None
-
1.2.1.GA, 2.0.GA, 2.0.1.GA
-
None
-
None
Check the method org.jboss.resteasy.util.StringToPrimitive.stringToPrimitiveBoxType(Class primitiveType, String value)
it misses case for char primitive.
this means that in this kind of method
@Path("/")
public class ParamTestResource {
@GET
@Path("/pathparam8/
")
public String pathparam(@PathParam("var") char var)
}
var is always injected null value.
- is duplicated by
-
JBPAPP-4939 char primitive parameter doesn't get injected
- Closed