<welcome-file-list> jsp加载默认页面问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了<welcome-file-list> jsp加载默认页面问题相关的知识,希望对你有一定的参考价值。

在web.xml配置文件中,设置默认的访问路径,能不能写action ?
不要设置index.jsp在跳转的那种

<welcome-file-list>
<welcome-file>StockPreservestoreHouse.action</welcome-file>
</welcome-file-list>

这里能不能这样写呀,请各位大虾帮帮解决解决,不胜感激

不可以这样写,初始页不能定向到action里,如果需要只能定向到jsp页面,然后跳转到action里,比如
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
然后在index.jsp里用<jsp:forward path="StockPreservestoreHouse.action">或者用当然也可以直接用struts标签
参考技术A 默认路径不允许直接跳转action,楼上的方法可以。

window.location.href

WEB设置首页

  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>

windows.location.href="/url" 当前页面打开URL页面,表示重新定向到新页面,同时刷新打开的这个页面;

<script type="text/javascript">
    window.location.href = "./home/home.html";
</script>

啦啦啦

以上是关于<welcome-file-list> jsp加载默认页面问题的主要内容,如果未能解决你的问题,请参考以下文章

Javaweb——web.xml中的welcome-file-list

如何在 servlet 3.0 的 web.xml-less 中定义 <welcome-file-list> 和 <error-page>?

请问怎么让tomcat默认先访问index.php

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

web项目中设置首页

如何在JSP中设置WEB应用的默认访问页面