📄 actionpostprocess.java
字号:
/*
* $Id: ActionPostProcess.java 505640 2007-02-10 06:32:27Z mikus $
*
* Copyright 2007 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.struts.chain.commands.servlet;
import org.apache.struts.chain.contexts.ActionContext;
import org.apache.struts.chain.contexts.ServletActionContext;
import org.apache.struts.chain.commands.ActionCommandBase;
import org.apache.struts.Globals;
import javax.servlet.http.HttpServletRequest;
/**
* <p>Performs post-processing functions in command chain</p>
*
* @version $Rev: 505640 $ $Date: 2007-02-10 14:32:27 +0800 $
* @since Struts 1.4
*/
public class ActionPostProcess extends ActionCommandBase {
/**
* <p>Performs additional functions after an Action or Command
* has been called.</p>
*
* @param context The <code>Context</code> for the current request
* @return <code>false</code> so that processing continues
* @throws Exception on any error
*/
public boolean execute(ActionContext context) throws Exception {
ServletActionContext saContext = (ServletActionContext) context;
HttpServletRequest request = saContext.getRequest();
// Set flag in request object, notifying chained actions that
// this request was already processed.
request.setAttribute(Globals.FORWARD_KEY, Boolean.TRUE);
// Continue chain processing
return false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -