Hi All!
XSLTJaxbProvider has annotation
@Produces({"application/xml", "application/*+xml", "text/xml", "text/html"
})
so it is impossible to use it for text/csv
is there a way to override it with , example with
@Produces({"application/xml", "application/*+xml", "text/*" })
public class XSLTJaxbProvider2 extends XSLTJaxbProvider {
but without writing overriding class.
