正确格式
<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>
上述配置情况下启动服务器,终是报404错误,但我在地址栏手工加入index.do时,页面正常显示。
原因:<welcome-file>index.jsp </welcome-file> 节点中只能包含HTML、HTM、TEXT文件,不能访问控制器
相关推荐
在本例中,我们需要将错误的<servlet>标签改为<welcome-file-list>标签,正确的配置如下: ``` <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 其他可能的解决方案 除了...
<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><welcome-file>index.jsp</welcome-file><welcome-file>login.jsp</welcome-file></welcome-file-list> 2. 图标(Icon) icon 元素用于指定 gif 格式或 jpeg 格式的小图标(16*16)或大...
#### <welcome-file-list> - **作用**:定义当请求一个目录时,服务器应优先展示的文件列表。 - **示例**: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.jsp</...
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. ...
</welcome-file-list> 在上面的配置中,定义了 Welcome 文件的列表,包括 index.html、index.htm 和 index.jsp。 二、server.xml 配置文件 server.xml 配置文件是 Tomcat 服务器的另一个重要配置文件,用于配置 ...
3. `<welcome-file-list>`:设置默认首页,当用户访问目录而不是具体文件时,Servlet容器会尝试加载这些文件。例如: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index...
</welcome-file-list> ``` **10. error-page** ```xml <error-page> <error-code>404</error-code> <location>/notFound.jsp</location> </error-page> ``` **11. taglib** ```xml <taglib> <taglib-uri>/...
1. `<welcome-file-list>`元素:定义当用户访问目录而不是具体文件时要展示的默认页面。 ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> </...
- 在 `web.xml` 中可以通过 `<welcome-file-list>` 元素来指定一系列欢迎页。 - 当用户访问应用根目录时,服务器会自动寻找这些欢迎页,并按照顺序返回第一个存在的页面。 - 示例代码: ```xml <welcome-file-...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> 4 cas client 2.0配置说明 <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns=...
</welcome-file-list> ``` 12. **`mime-mapping`元素** - 设置MIME类型映射。 ```xml <mime-mapping> <extension>jpg</extension> <mime-type>image/jpeg</mime-type> </mime-mapping> ``` #### 四、其他...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 访问目录时,服务器将自动尝试加载`index.jsp`。 8. **安全配置** `web.xml`还可以包含安全相关的配置,如定义角色、...
</welcome-file-list> ``` ### 8. `error-page`节点 当发生特定错误时,`error-page`可以指定一个页面来处理错误。 ```xml <error-page> <error-code>404</error-code> <location>/notfound.jsp</location> </...
<welcome-file-list> <welcome-file>index.vm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> 3.index.vm代码 $!isSuccess 4.访问地址 http://IP:端口/vlo/hello ...
`<welcome-file-list>`定义了Web应用的欢迎页面列表,当用户访问Web应用的上下文路径但没有指定具体资源时,容器会尝试依次加载列表中的页面。 ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file...
`<welcome-file-list>`标签用于定义当客户端访问Web应用的上下文路径时,默认显示的欢迎页面列表。例如: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</...
`web.xml`文件可以通过`<welcome-file-list>`元素来指定一组欢迎页面,服务器会按照列表中页面的顺序尝试加载它们。示例代码如下: ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file> ...