当前位置: 首页>>代码示例>>Java>>正文


Java ActionForward.setPath方法代码示例

本文整理汇总了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;
}
 
开发者ID:costea7,项目名称:ChronoBike,代码行数:37,代码来源:CustomApplicationLauncherAction.java

示例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);
   }
}
 
开发者ID:blackarbiter,项目名称:Android_Code_Arbiter,代码行数:37,代码来源:FileDisclosure.java


注:本文中的org.apache.struts.action.ActionForward.setPath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。