本文整理汇总了Java中org.apache.struts.action.ActionForward.setPath方法的典型用法代码示例。如果您正苦于以下问题:Java ActionForward.setPath方法的具体用法?Java ActionForward.setPath怎么用?Java ActionForward.setPath使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.struts.action.ActionForward
的用法示例。
在下文中一共展示了ActionForward.setPath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import org.apache.struts.action.ActionForward; //导入方法依赖的package包/类
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws Exception
{
HttpSession javaSession = request.getSession(true);
OnlineSession appSession = null ;
appSession = (OnlineSession)javaSession.getAttribute("AppSession");
if (appSession == null)
{
return null ;
}
// create wrapper for form fields
CHTTPMapFieldLoader reqLoader = new CHTTPMapFieldLoader(request);
String appId = reqLoader.getFieldValue("ApplicationId") ;
OnlineResourceManager resman = OnlineResourceManagerFactory.GetInstance() ;
Tag tagConf = resman.getCustomApplicationLauncherConfig() ;
TagCursor cur = new TagCursor() ;
Tag tagApp = tagConf.getFirstChild(cur, "App") ;
while (tagApp != null)
{
if (tagApp.getVal("ID").equals(appId))
{
String url = BuildURL(reqLoader, tagApp, appSession) ;
ActionForward actionForward = new ActionForward() ;
actionForward.setRedirect(true) ;
actionForward.setPath(url) ;
return actionForward;
}
tagApp = tagConf.getNextChild(cur) ;
}
return null;
}
示例2: doGet
import org.apache.struts.action.ActionForward; //导入方法依赖的package包/类
public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException{
try{
String returnURL = request.getParameter("returnURL");
/******Struts ActionForward vulnerable code tests******/
ActionForward forward = new ActionForward(returnURL); //BAD
ActionForward forward2 = new ActionForward(returnURL, true); //BAD
ActionForward forward3 = new ActionForward("name", returnURL, true); //BAD
ActionForward forward4 = new ActionForward("name", returnURL, true, true); //BAD
ActionForward forward5 = new ActionForward();
forward5.setPath(returnURL); //BAD
//false positive test - returnURL moved from path to name (safe argument)
ActionForward forward6 = new ActionForward(returnURL, "path", true); //OK
/******Spring ModelAndView vulnerable code tests******/
ModelAndView mv = new ModelAndView(returnURL); //BAD
ModelAndView mv2 = new ModelAndView(returnURL, new HashMap()); //BAD
ModelAndView mv3 = new ModelAndView(returnURL, "modelName", new Object()); //BAD
ModelAndView mv4 = new ModelAndView();
mv4.setViewName(returnURL); //BAD
//false positive test - returnURL moved from viewName to modelName (safe argument)
ModelAndView mv5 = new ModelAndView("viewName", returnURL, new Object()); //OK
}catch(Exception e){
System.out.println(e);
}
}