[
https://issues.apache.org/jira/browse/CXF-5065?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13747359#comment-13747359
]
Sergey Beryozkin commented on CXF-5065:
---------------------------------------
Right, the actual fix does enable for subresources see their parent's
consumes/produces, but you right that as a side-effect subresources do not see
their own class-level Consumes/Produces now.
> Subresource operations do not see root resource Produces or Consumes
> annotations
> ---------------------------------------------------------------------------------
>
> Key: CXF-5065
> URL: https://issues.apache.org/jira/browse/CXF-5065
> Project: CXF
> Issue Type: Bug
> Components: JAX-RS
> Reporter: Sergey Beryozkin
> Assignee: Sergey Beryozkin
> Fix For: 2.5.11, 2.6.9, 2.7.6, 3.0.0
>
>
> If we have
> {code:java}
> @Path("/root")
> @Produces("text/xml")
> public class Root {
> @Path("/sub")
> public SubRoot getSubRoot() {
> }
> }
> public class SubRoot {
> @GET
> public Order get() {
> }
> }
> {code}
> then SubRoot.get() method will not inherit Root's @Produces
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira