WW-4131 Implements new ActionProxyFactory to cooperate with PrefixBasedActionMapper

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1534936 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Lukasz Lenart
2013-10-23 07:33:44 +00:00
parent ee346f9071
commit 391b8ce2c3
4 changed files with 93 additions and 2 deletions
@@ -0,0 +1,87 @@
package org.apache.struts2.impl;
import com.opensymphony.xwork2.ActionProxy;
import com.opensymphony.xwork2.ActionProxyFactory;
import com.opensymphony.xwork2.DefaultActionProxyFactory;
import com.opensymphony.xwork2.inject.Container;
import com.opensymphony.xwork2.inject.Inject;
import com.opensymphony.xwork2.util.logging.Logger;
import com.opensymphony.xwork2.util.logging.LoggerFactory;
import org.apache.struts2.StrutsConstants;
import java.util.HashMap;
import java.util.Map;
/**
* <!-- START SNIPPET: description -->
* Prefix based factory should be used with {@link org.apache.struts2.dispatcher.mapper.PrefixBasedActionMapper}
* to use appropriate {@link com.opensymphony.xwork2.ActionProxyFactory} connected with given
* {@link org.apache.struts2.dispatcher.mapper.ActionMapper}
*
* Add below entry to struts.xml to enable the factory:
* &lt;constant name="struts.actionProxyFactory" value="prefix"/&gt;
*
* The factory will use the same set of patterns as defined with:
* &lt;constant name="struts.mapper.prefixMapping" value="..."/&gt;
* <!-- END SNIPPET: description -->
*/
public class PrefixBasedActionProxyFactory extends DefaultActionProxyFactory {
private static final Logger LOG = LoggerFactory.getLogger(PrefixBasedActionProxyFactory.class);
private Map<String, ActionProxyFactory> actionProxyFactories = new HashMap<String, ActionProxyFactory>();
private ActionProxyFactory defaultFactory;
@Inject
public void setContainer(Container container) {
this.container = container;
}
@Inject(StrutsConstants.STRUTS_ACTIONPROXYFACTORY)
public void setActionProxyFactory(ActionProxyFactory factory) {
this.defaultFactory = factory;
}
@Inject(StrutsConstants.PREFIX_BASED_MAPPER_CONFIGURATION)
public void setPrefixBasedActionProxyFactories(String list) {
if (list != null) {
String[] factories = list.split(",");
for (String factory : factories) {
String[] thisFactory = factory.split(":");
if ((thisFactory != null) && (thisFactory.length == 2)) {
String factoryPrefix = thisFactory[0].trim();
String factoryName = thisFactory[1].trim();
ActionProxyFactory obj = container.getInstance(ActionProxyFactory.class, factoryName);
if (obj != null) {
actionProxyFactories.put(factoryPrefix, obj);
} else if (LOG.isWarnEnabled()) {
LOG.warn("Invalid PrefixBasedActionProxyFactory config entry: [#0]", factory);
}
}
}
}
}
public ActionProxy createActionProxy(String namespace, String actionName, String methodName,
Map<String, Object> extraContext, boolean executeResult, boolean cleanupContext) {
String uri = namespace + (namespace.endsWith("/") ? actionName : "/" + actionName);
for (int lastIndex = uri.lastIndexOf('/'); lastIndex > (-1); lastIndex = uri.lastIndexOf('/', lastIndex - 1)) {
String key = uri.substring(0, lastIndex);
ActionProxyFactory actionProxyFactory = actionProxyFactories.get(key);
if (actionProxyFactory != null) {
if (LOG.isDebugEnabled()) {
LOG.debug("Using ActionProxyFactory [#0] for prefix [#1]", actionProxyFactory, key);
}
return actionProxyFactory.createActionProxy(namespace, actionName, methodName, extraContext, executeResult, cleanupContext);
} else if (LOG.isDebugEnabled()) {
LOG.debug("No ActionProxyFactory defined for [#1]", key);
}
}
if (LOG.isDebugEnabled()){
LOG.debug("Cannot find any matching ActionProxyFactory, falling back to [#0]", defaultFactory);
}
return defaultFactory.createActionProxy(namespace, actionName, methodName, extraContext, executeResult, cleanupContext);
}
}
@@ -23,8 +23,6 @@
package org.apache.struts2.impl;
import java.util.Map;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.ActionProxy;
import com.opensymphony.xwork2.DefaultActionProxyFactory;
@@ -48,6 +48,7 @@
<bean type="com.opensymphony.xwork2.FileManagerFactory" class="com.opensymphony.xwork2.util.fs.DefaultFileManagerFactory" name="struts" scope="singleton"/>
<bean type="com.opensymphony.xwork2.ActionProxyFactory" name="struts" class="org.apache.struts2.impl.StrutsActionProxyFactory"/>
<bean type="com.opensymphony.xwork2.ActionProxyFactory" name="prefix" class="org.apache.struts2.impl.PrefixBasedActionProxyFactory"/>
<bean type="com.opensymphony.xwork2.conversion.ObjectTypeDeterminer" name="struts" class="com.opensymphony.xwork2.conversion.impl.DefaultObjectTypeDeterminer"/>
@@ -71,4 +71,9 @@ public class DefaultActionProxyFactory implements ActionProxyFactory {
return proxy;
}
@Override
public String toString() {
return getClass().getSimpleName();
}
}