首页 > 代码库 > 何让welcome-file跳转到Action呢[转]

何让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 = "http://www.mamicode.com//newsmain.do" 
</script> 
</body>

 

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