@Context does not work for JAX-RS member fields
-----------------------------------------------
Key: CXF-2335
URL: https://issues.apache.org/jira/browse/CXF-2335
Project: CXF
Issue Type: Bug
Components: REST
Affects Versions: 2.2.2
Reporter: Hendy Irawan
This works in Jersey, but not in CXF:
class ........ {
@Context
private UriInfo context;
}
The alternative, works on both CXF and Jersey:
class ...... {
@GET
public void something(@Context UriInfo context) {
...
}
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.