问题:
<welcome-file-list>中的<welcome-file>标签部分除了放具体的jsp或html页面(例如下)
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
外能不能放一个请求在里面?(例如下)
<welcome-file-list>
<welcome-file>index.do</welcome-file>
</welcome-file-list>
我用spring MVC,按照以下配置
<welcome-file-list>
<welcome-file>index.do</welcome-file>
</welcome-file-list>
启动服务器,终是报404错误,但我在地址栏手工加入index.do时,页面正常显示,这是为什么,是不是服务器不支持这样的写法(index.do)????如果支持应该如何写????
回答:
支持...不过tomcat 会去检查有没有index.do这个文件.
意思大概就是这样,首先读取 welcome list,然后取得第一个index,然后到web中的路径中查找有没有这个文件,没有继续第二个.
然后继续下去没有,就提示没有主页.
解决办法:
在你的WebRoot 下添加一个空白的文件命名为 index.do
分享到:
相关推荐
例如:<welcome-file-list><welcome-file>index.jsp</welcome-file><welcome-file>login.jsp</welcome-file></welcome-file-list> 2. 图标(Icon) icon 元素用于指定 gif 格式或 jpeg 格式的小图标(16*16)或大...
ELEMENT welcome-file-list (welcome-file+)> <!ELEMENT welcome-file (#PCDATA)> ``` 示例: ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> ...
11. **`<welcome-file-list>`** - **作用**:指定当访问目录时浏览器显示的第一个文件。 - **示例**: ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 12. ...
<description>A simple Java web application.</description> <!-- 配置环境参数 --> <context-param> <param-name>db.url</param-name> <param-value>jdbc:mysql://localhost:3306/mydb</param-value> </...
#### <welcome-file-list> - **作用**:定义当请求一个目录时,服务器应优先展示的文件列表。 - **示例**: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.jsp</...
`<welcome-file-list>`元素用于指定当客户端请求Web应用的上下文路径时,如果没有提供具体的资源路径,默认显示的页面列表。 **示例**: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> ...
1. `<welcome-file-list>`元素:定义当用户访问目录而不是具体文件时要展示的默认页面。 ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> </...
在本例中,我们需要将错误的<servlet>标签改为<welcome-file-list>标签,正确的配置如下: ``` <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 其他可能的解决方案 除了...
</welcome-file-list> ``` 访问目录时,服务器将自动尝试加载`index.jsp`。 8. **安全配置** `web.xml`还可以包含安全相关的配置,如定义角色、授权限制和SSL配置。 通过理解并熟练掌握`web.xml`的这些配置,...
12. **<welcome-file-list>**: 当用户访问目录而不是具体文件时,服务器将使用欢迎文件列表中的文件作为默认响应。 13. **<error-page>**: 配置错误页面,当特定的HTTP状态码或异常发生时,服务器将重定向到指定的...
3. `<welcome-file-list>`:设置默认首页,当用户访问目录而不是具体文件时,Servlet容器会尝试加载这些文件。例如: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index...
</welcome-file-list> 在上面的配置中,定义了 Welcome 文件的列表,包括 index.html、index.htm 和 index.jsp。 二、server.xml 配置文件 server.xml 配置文件是 Tomcat 服务器的另一个重要配置文件,用于配置 ...
</welcome-file-list> ``` ### 8. `error-page`节点 当发生特定错误时,`error-page`可以指定一个页面来处理错误。 ```xml <error-page> <error-code>404</error-code> <location>/notfound.jsp</location> </...
"J2EE 中关于 web.xml 文件的配置" 在 J2EE 中,web.xml 文件扮演着非常重要的角色,它是一个基于 XML 的配置文件,用于描述 Web 应用的各个方面的配置信息。通过 web.xml 文件,我们可以对 Web 应用进行配置,例如...
</welcome-file-list> ``` 12. **`mime-mapping`元素** - 设置MIME类型映射。 ```xml <mime-mapping> <extension>jpg</extension> <mime-type>image/jpeg</mime-type> </mime-mapping> ``` #### 四、其他...
<description>This is a simple web application for demonstration purposes.</description> ``` ##### 2.4 `<context-param>` - **定义**:配置上下文参数,这些参数可以在整个Web应用范围内访问。 - **用途**...
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 当访问目录而非具体文件时,Tomcat将尝试这些文件。 **配置异常页面(3.2.5)*...
`<welcome-file-list>`定义了Web应用的欢迎页面列表,当用户访问Web应用的上下文路径但没有指定具体资源时,容器会尝试依次加载列表中的页面。 ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file...