`

<welcome-file>index.do 执行action

阅读更多
很多人肯定用tomcat的时候会遇到类似的问题。。。
配置了
web.xml配置:


Xml代码
<welcome-file-list> <welcome-file>index.do</welcome-file> </welcome-file-list>   



但没有用,还是会404错误....挺烦人的,只能弄一个index.html重定向到index.do 但无疑是网站首页访问效率降低了,等于request了2个请求。。

无意看了一下tomcat注释

When a request URI refers to a directory, the default servlet looks for a "welcome file" within that directory and, if present,  to the corresponding resource URI for display


也就是说,必须web-app目录下有index.do这个文件。。。。。。
2
0
分享到:
评论
1 楼 winter8 2010-01-05  
同是天涯沦落人啊!

相关推荐

    spring_MVC源码

    22. &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; 23. &lt;/welcome-file-list&gt; 24.&lt;/web-app&gt; spring-servlet,主要配置controller的信息 [java] view plaincopy 01.&lt;?xml version="1.0" encoding="UTF-8...

    初学者入门:Structs中基本配置入门

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 此配置表示,当用户访问Web应用根目录时,Web容器首先尝试加载`welcome.jsp`,如果不存在则尝试加载`index.jsp`。需要注意的是,欢迎文件列表中...

    Spring MVC 入门实例

    46 &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; 47 &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; 48 &lt;/welcome-file-list&gt; 49 50 &lt;jsp-config&gt; 51 &lt;taglib&gt; 52 &lt;taglib-uri&gt;http://java.sun.com/jsp/jstl/core&lt;/taglib-...

    Structs中基本配置入门

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` - `&lt;welcome-file&gt;`:定义了欢迎文件的列表,当没有指定文件名时,会按照列表顺序依次尝试加载这些文件。 - 可以包含多个子元素,按顺序查找...

    jsp(实现首页动态)java

    &lt;welcome-file&gt;index.do&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 2. **处理请求**:当用户访问网站时,如果未指定具体的资源路径,则会自动跳转到`index.do`页面。这里需要注意的是,`index.do`后缀通常不用于...

    Spring下的子框架SpringMVC实现单个文件上传功能

    &lt;welcome-file&gt;index.do&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` #### 五、总结 本文详细介绍了如何在SpringMVC中实现单个文件的上传功能,包括了必要的准备工作、具体的实现步骤以及相关的配置。...

    实现Struts上传多个文件

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;!-- error handling --&gt; &lt;error-page&gt; &lt;error-code&gt;404&lt;/error-code&gt; &lt;location&gt;/error.jsp&lt;/location&gt; &lt;/error-page&gt; &lt;/web-app&gt; ``` 此...

    SSH整合配置.doc

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;servlet&gt; &lt;servlet-name&gt;action&lt;/servlet-name&gt; &lt;servlet-class&gt;org.apache.struts.action.ActionServlet&lt;/servlet-class&gt; &lt;init-param&gt; ...

    原创 Struts Spring Hibernate (SSH) 整合实例

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` ##### 3.2 `struts.xml` 文件 `struts.xml` 是Struts框架的核心配置文件,用于配置表单bean、...

    Struts2_通配符映射

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` #### 二、实现通配符映射 通配符映射允许Struts2拦截器处理所有以特定前缀开始的URL请求。例如,本例中的`UserAction-*`。 1. **...

    Struts1.2实现MySQL数据库分页.txt

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` ##### struts-config.xml `struts-config.xml` 是Struts框架的核心配置文件,用于配置Action、Form Beans等。下面是一个简单的配置...

    jsp大学教程代码

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;!-- Struts Tag Library Descriptors --&gt; &lt;taglib&gt; &lt;taglib-uri&gt;/tags/struts-bean&lt;/taglib-uri&gt; &lt;taglib-location&gt;/WEB-INF/tld/struts-...

    SSH与DWR框架整合

    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` 这里的关键点在于确保Spring的加载发生在其他框架之前,以确保所有需要的bean都能够正确地初始化。 ##### 3.2 配置Struts 由于...

    Web.xml的作用及常用标签的功能

    例如,设置`&lt;welcome-file&gt;`为`index.jsp`和`index2.jsp`,当用户访问Web应用的根URL时,服务器会按照顺序尝试寻找这些文件。如果找到第一个文件,其他文件则不再处理。欢迎页面是用户打开网站时首先看到的页面,...

    struts详细配置

    配置欢迎文件列表(`&lt;welcome-file-list&gt;`)是确保用户访问应用根路径时,服务器能够自动调用指定的首页,如`index.html`。错误处理(`&lt;error-page&gt;`)则用于捕获并处理可能出现的HTTP错误代码或异常,通过`&lt;error-...

    web.xml详解

    - `&lt;servlet-mapping&gt;`定义了Servlet的URL映射,`&lt;url-pattern&gt;`元素指定了请求路径,这里设置为`*.do`,意味着所有以`.do`结尾的URL都会被ActionServlet处理。 9. **Standard Action Servlet Mapping**: - `...

    cms后台管理

    &lt;welcome-file&gt;index.shtml&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jhtml&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; 通过以上标签找到应该加载哪一个页面 &lt;servlet&gt; &lt;servlet-name&gt;JeeCmsFront&lt;/servlet-name&gt; ...

    ajax学习很好的学习文档

    然后,`&lt;welcome-file-list&gt;`定义了当用户访问应用根目录时应该显示的默认页面,这里是`index.jsp`。 `&lt;taglib&gt;`元素用于注册Struts的标签库,如`struts-bean`、`struts-html`、`struts-logic`、`struts-nested`和`...

Global site tag (gtag.js) - Google Analytics