當前位置: 首頁>>代碼示例>>Java>>正文


Java ActionInvocation.addPreResultListener方法代碼示例

本文整理匯總了Java中com.opensymphony.xwork2.ActionInvocation.addPreResultListener方法的典型用法代碼示例。如果您正苦於以下問題:Java ActionInvocation.addPreResultListener方法的具體用法?Java ActionInvocation.addPreResultListener怎麽用?Java ActionInvocation.addPreResultListener使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.opensymphony.xwork2.ActionInvocation的用法示例。


在下文中一共展示了ActionInvocation.addPreResultListener方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: intercept

import com.opensymphony.xwork2.ActionInvocation; //導入方法依賴的package包/類
@Override
public String intercept(ActionInvocation invocation) throws Exception {
    Object action = invocation.getAction();

    if (action instanceof ModelDriven) {
        ModelDriven modelDriven = (ModelDriven) action;
        ValueStack stack = invocation.getStack();
        Object model = modelDriven.getModel();
        if (model !=  null) {
        	stack.push(model);
        }
        if (refreshModelBeforeResult) {
            invocation.addPreResultListener(new RefreshModelBeforeResult(modelDriven, model));
        }
    }
    return invocation.invoke();
}
 
開發者ID:txazo,項目名稱:struts2,代碼行數:18,代碼來源:ModelDrivenInterceptor.java

示例2: intercept

import com.opensymphony.xwork2.ActionInvocation; //導入方法依賴的package包/類
@Override
public final String intercept( ActionInvocation actionInvocation ) throws Exception
{
    actionInvocation.addPreResultListener( this );

    executePreResultListener = true;

    try
    {
        return actionInvocation.invoke();
    }
    catch ( Exception e )
    {
        executePreResultListener = false;
        throw e;
    }
}
 
開發者ID:dhis2,項目名稱:dhis2-core,代碼行數:18,代碼來源:AbstractPreResultListener.java

示例3: intercept

import com.opensymphony.xwork2.ActionInvocation; //導入方法依賴的package包/類
public String intercept(ActionInvocation invocation)
	throws Exception
{
	// ��һ�����ؽ���ļ�����ע�����������
	invocation.addPreResultListener(new MyPreResultListener());
	System.out.println("execute����ִ��֮ǰ������...");
	// ������һ��������������Action�ı����ط���
	String result = invocation.invoke();
	System.out.println("execute����ִ��֮�������...");
	return result;
}
 
開發者ID:wolfogre,項目名稱:CodesOfLightweightJavaEE,代碼行數:12,代碼來源:BeforeResultInterceptor.java

示例4: intercept

import com.opensymphony.xwork2.ActionInvocation; //導入方法依賴的package包/類
public String intercept(ActionInvocation invocation) throws Exception {
    invocation.addPreResultListener(this);
    return invocation.invoke();
}
 
開發者ID:txazo,項目名稱:struts2,代碼行數:5,代碼來源:CookieProviderInterceptor.java

示例5: intercept

import com.opensymphony.xwork2.ActionInvocation; //導入方法依賴的package包/類
public String intercept(ActionInvocation invocation) throws Exception {
    LOG.trace("entering MessageStoreInterceptor ...");

    before(invocation);

    LOG.trace("Registering listener to store messages before result will be executed");
    invocation.addPreResultListener(new MessageStorePreResultListener(this));

    String result = invocation.invoke();

    LOG.debug("exit executing MessageStoreInterceptor");

    return result;
}
 
開發者ID:txazo,項目名稱:struts2,代碼行數:15,代碼來源:MessageStoreInterceptor.java


注:本文中的com.opensymphony.xwork2.ActionInvocation.addPreResultListener方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。