welcome-file-list配置形式:
<welcome-file-list>
<welcome-file>/main/main.jsp</welcome-file>
</welcome-file-list>
浏览器输入main/main.jsp打开项目没有问题:
http://localhost:8080/
项目 打开就会丢失样式
http://localhost:8080/
项目/main/main.jsp 完整显示
目前的解决方法:
welcome-file-list配置:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
index.jsp代码:
<html>
<head>
<script type="text/javascript">
location.href="main/main.jsp";
</script>
</head>
<body>
</body>
</html>
分享到:
相关推荐
在SpringMVC中 所有的请求都由dispatcherServlet处理(url-pattern配置的是/),当配置文件中有对静态资源的处理 <mvc:default-servlet-handler/> 时候 ,先匹配 welcome-file-list 中的文件,依次查找,找到了就 ...
<filter-name>Encoding</filter-name> ... <filter-mapping> <filter-name>Encoding</filter-name> ... <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>...
聊天室(ActionScript 3.0实现)<?xml version="1.0" encoding="UTF-8"?> -<web-app xsi:schemaLocation=...<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
<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> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>...
<welcome-file-list> <welcome-file>welcome.jsp</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` - `<welcome-file>`:定义了欢迎文件的列表,当没有指定文件名时,会按照列表...
</welcome-file-list> 在上面的配置中,定义了 Welcome 文件的列表,包括 index.html、index.htm 和 index.jsp。 二、server.xml 配置文件 server.xml 配置文件是 Tomcat 服务器的另一个重要配置文件,用于配置 ...
- 查找`<welcome-file-list>`部分,确保其中包含`favicon.ico`的引用。 - 如果没有,则添加如下代码: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index....
在本例中,我们需要将错误的标签改为<welcome-file-list>标签,正确的配置如下: ``` <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 其他可能的解决方案 除了检查web.xml...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>index.html</welcome-file> </welcome-file-list> <jsp-config> <taglib-uri>...
<welcome-file-list> <welcome-file>iptv.html</welcome-file> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list...
- 检查Web项目配置:确保你的Web应用的`web.xml`文件配置正确,特别是`<welcome-file-list>`元素,它定义了默认的欢迎页面。例如: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome...
</welcome-file-list> ``` 这一步是为了指定应用启动时默认加载的页面。 ##### 3.5 JSP 页面修改 最后,在 JSP 页面中添加 TOC 和 Overview 组件: ```html ``` 这里需要注意的是,如果需要使用 AJAX 功能...
1. **定义欢迎页面**:在`web.xml`配置文件中定义欢迎页面列表`<welcome-file-list>`,该列表中可以指定多个文件名,Web容器会按照顺序尝试加载这些文件作为网站的首页。 ```xml <welcome-file-list> <welcome-...
- 查找`<welcome-file-list>`标签,并在其内部添加需要的主页文件名称,如: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>...
</welcome-file-list> <!-- 引用数据源 --> <resource-ref> <description>DBConnection <res-ref-name>jdbc/sqlserver</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res...
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> */ @SuppressWarnings(...
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>...