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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了何让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>

 

以上是关于何让welcome-file跳转到Action呢[转]的主要内容,如果未能解决你的问题,请参考以下文章

为啥用spring mvc 注解的方式跳转到controller就是跳不过去,是啥原因呢

android 如何使用Intent跳转到文件管理器指定目录。不要再复制

<welcome-file-list> 里配置的servlet怎么不起作用?

struts2 从一个action跳转到另一个action的struts.xml文件的配置

from表单跳转到java类的方法里面

thinkphp5无法用html表单中的action跳转到另一个页面?