何让welcome-file跳转到Action呢[转]

转自:http://blog.csdn.net/ytsmwhc/article/details/7256843

设置welcome-file跳到Action总是报404,因为需要在首页加载数据,需要进action,怎么办呢?

解决方法:

1.

welcome list 是可以设置xxxx.do的,只不过你要建一个相同名的空文件了 
比如你要让welcome list 指向index.do 
你在工程根目录下建个index.do的文件就行了,空的,什么都不用写 
tomcat的配置文件里面有说明,看看就明白了!

2.

指定一个页面再跳到action:

<welcome-file-list> 
<welcome-file>index.html </welcome-file> 
</welcome-file-list> 
index.html里面写: 
<body bgcolor="#FFFFFF" text="#000000"> 
<script language="JavaScript"> 
location.href = " <%=request.getContextPath()%>/newsmain.do" 
</script> 
</body>

时间: 2024-10-19 15:10:57

何让welcome-file跳转到Action呢[转]的相关文章

JS funtion()中URL不跳转后台action问题

JS funtion()中URL不跳转后台action问题 今天遇到一个百思不得其解的问题,到现在解决了,但是仍然不知道所以然(估计是因为域名不一致导致的),记录一下 $.get(actionUrl, {"parentId":parentId}, function(objResult){ $("#childType").find("option").remove(); $("#childType").append('<o

Struts2.x jsp页面无法使用jsp:forward跳转到action

问题:使用<jsp:forward page="test"></jsp:forward>语句无法跳转到test所对应的action. 解决办法:在web.xml中 添加 <filter-mapping>          <filter-name>struts2</filter-name>          <url-pattern>/*</url-pattern>          <dispa

from表单多个按钮提交用onclick跳转不同action

<script language="JavaScript" type="text/javascript"> function windowsSubmit(actionType) {  if (actionType=="search"){      document.forms[0].action="P_Search.action";  } else if (actionType=="clear"

struts2 action 页面跳转

struts2 action 页面跳转 标签: actionstruts2redirect 2013-11-06 16:22 20148人阅读 评论(0) 收藏 举报 (1)type="dispatcher" 为默认,用于jsp页面跳转<result name="success">/index.jsp</result> 完整的写法为: <result name="success" type="dispatc

通过button返回一个action,跳转到一个view

可以参考采购单的右侧按钮的写法. 简单讲,就是先通过xmlid获取到action_id,继而获取到action,修改action的相关信息,然后将结果返回,即可以实现跳转. mod_obj = self.pool.get('ir.model.data') dummy,action_id = tuple(mod_obj.get_object_reference(cr,uid,'purchase','purchase_rfq')) action = self.pool.get('ir.actions

struts2 result类型为redirectAction时,跳转转到另一个包空间里的一个action的指定处理方法的xml配置

xml配置如下: <action name="editTeaAction" class="com.hcj.action.database.admin.EditTeaAction"> <!-- 编辑成功后,转到茶叶信息界面 --> <result name="success" type="redirectAction"> <!-- 指定跳转的action名称 --> <par

struts1 action之间的跳转

ActionForward actionForward = new ActionForward(); actionForward.setPath("xxxxxxxx");//跳转的action的地址 actionForward.setRedirect(true); return actionForward; 原文地址:https://www.cnblogs.com/penghq/p/9408002.html

Android开发:显式/隐式Intent意图跳转Activity总结

显式跳转 在已知包名和类名的情况下常用的跳转方法: 是 nt mIntent = new Intent(); mIn Int etent.setClassName("com.android.settings","com.android.settings.Settings"); mContext.startActivity(mIntent); 我们也常这么用: y.class); startActivity(intent); 这是跳转到当前应用的某个Activity,

Action返回类型

1.返回ascx页面return PartialView(); 2.返回文本return Content("这是一段文本"); 3.返回Json 4.输出JS文件return JavaScript("var x=0;"); 5.页面跳转跳转到Url:return Redirect("http://www.baidu.com"); 跳转到Action:return RedirectToAction("Index","E