[ 
https://issues.apache.org/jira/browse/WW-3590?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukasz Lenart reassigned WW-3590:
---------------------------------

    Assignee: Lukasz Lenart

> REST service actions and "normal" actions in the same web application (patch)
> -----------------------------------------------------------------------------
>
>                 Key: WW-3590
>                 URL: https://issues.apache.org/jira/browse/WW-3590
>             Project: Struts 2
>          Issue Type: Improvement
>          Components: Plugin - REST
>    Affects Versions: 2.2.1.1
>         Environment: N/A
>            Reporter: Raigedas
>            Assignee: Lukasz Lenart
>            Priority: Minor
>              Labels: namespaces, patch, rest
>             Fix For: 2.2.2
>
>         Attachments: rest namespace patch.txt
>
>   Original Estimate: 10m
>  Remaining Estimate: 10m
>
> Problem.
> i would like to expand my existing webapp by adding RESTful ws. i do not want 
> to create a separate webapp which would serve solely as web service.
> but as soon as i add REST plugin to th classpath of my struts2 based webapp, 
> all actions (which worked correctly before) stop working and i get errors:
> java.lang.NoSuchMethodException <...> MyActionName.index().
> i thought that it could be solved by reconfiguring "ActionMapper"s. i 
> configured that in this way:
> <constant name="struts.mapper.class"  
>          
> value="org.apache.struts2.dispatcher.mapper.PrefixBasedActionMapper"/>  
> <constant name="struts.mapper.prefixMapping" value="/ws/rest:rest,:struts"/>
> but this does not solves the problem. "normal" actions throw "Cannot handle 
> CGLIB enhanced proxies with multiple callbacks".. 
> Solution.
> i suggest to implement conditional enabling (based on the namespace of the 
> request) of the REST plugin. this can be done by changing 
> RestActionProxyFactory class a little bit. my solution (see the patch) adds a 
> "namespace" property (with setter only). that property has default value or 
> can have injected a config value named "struts.rest.namespace". the default 
> value is "/" which means that after update the functionality of the plugin 
> will remain the same unless one adds a config like:
> <constant name="struts.rest.namespace" value="/rest" />

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to