You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sergey Beryozkin (JIRA)" <ji...@apache.org> on 2014/12/10 13:21:12 UTC

[jira] [Comment Edited] (CXF-6150) Override XSLTJaxbProvider xsl path at runtime

    [ https://issues.apache.org/jira/browse/CXF-6150?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14241008#comment-14241008 ] 

Sergey Beryozkin edited comment on CXF-6150 at 12/10/14 12:20 PM:
------------------------------------------------------------------

Can you use this approach to implement a refresh templates idea ?

Sergey


was (Author: sergey_beryozkin):
Can you use this approach to inplement a refresh templates idea ?

Sergey

> Override XSLTJaxbProvider xsl path at runtime
> ---------------------------------------------
>
>                 Key: CXF-6150
>                 URL: https://issues.apache.org/jira/browse/CXF-6150
>             Project: CXF
>          Issue Type: Improvement
>          Components: JAX-RS
>    Affects Versions: 3.0.2
>            Reporter: Vjacheslav Borisov
>            Priority: Minor
>
> XSLTJaxbProvider xslt url could be configured at runtime using MessageContext:
> eg, at jax-rs method 
> messageContext.put("xslt.template","stylesheets/path/to/xsl");
> and in XSLTJaxbProvider::getOutTemplates 
> {code:title=XSLTJaxbProvider.java|borderStyle=solid}
>         MessageContext mc = getContext();
>         if (mc != null) {
>             String template=(String)mc.getContextualProperty("xslt.template");
>             if(template!=null){
>                 t=createTemplates(template);
>             }
>         }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)