`
speed
  • 浏览: 8639 次
文章分类
社区版块
存档分类
最新评论

welcome-file-list配置问题(样式丢失)

 
阅读更多


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>








分享到:
评论

相关推荐

    welcome-file-list 与SpringMvc 的 DispatcherServlet

    在SpringMVC中 所有的请求都由dispatcherServlet处理(url-pattern配置的是/),当配置文件中有对静态资源的处理 &lt;mvc:default-servlet-handler/&gt; 时候 ,先匹配 welcome-file-list 中的文件,依次查找,找到了就 ...

    过滤器的做法

     &lt;filter-name&gt;Encoding&lt;/filter-name&gt; ...   &lt;filter-mapping&gt;  &lt;filter-name&gt;Encoding&lt;/filter-name&gt; ... &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt;

    一个在线报名系统

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;default.html&lt;/welcome-file&gt; &lt;welcome-file&gt;...

    聊天室(ActionScript 3.0实现)

    聊天室(ActionScript 3.0实现)&lt;?xml version="1.0" encoding="UTF-8"?&gt; -&lt;web-app xsi:schemaLocation=...&lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt;

    最简化velocity的web工程

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.vm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; 3.index.vm代码 $!isSuccess 4.访问地址 http://IP:端口/vlo/hello ...

    jsp开发环境的搭建及开发简介借鉴.pdf

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;default.html&lt;/welcome-file&gt; &lt;welcome-file&gt;...

    Structs中基本配置入门

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;welcome.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` - `&lt;welcome-file&gt;`:定义了欢迎文件的列表,当没有指定文件名时,会按照列表...

    tomcat配置文件web.xml与server.xml解析

    &lt;/welcome-file-list&gt; 在上面的配置中,定义了 Welcome 文件的列表,包括 index.html、index.htm 和 index.jsp。 二、server.xml 配置文件 server.xml 配置文件是 Tomcat 服务器的另一个重要配置文件,用于配置 ...

    修改IE地址栏Tomcat小猫咪图标

    - 查找`&lt;welcome-file-list&gt;`部分,确保其中包含`favicon.ico`的引用。 - 如果没有,则添加如下代码: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index....

    Jboss启动报Failed to parse WEB-INFweb.xml; - nested throwable错误

    在本例中,我们需要将错误的标签改为&lt;welcome-file-list&gt;标签,正确的配置如下: ``` &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 其他可能的解决方案 除了检查web.xml...

    Spring MVC 框架应用实例

    &lt;welcome-file-list&gt; &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; &lt;jsp-config&gt; &lt;taglib-uri&gt;...

    ubuntu 10.04上搭建tomcat服务器全攻略

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;iptv.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list...

    eclipse-use

    - 检查Web项目配置:确保你的Web应用的`web.xml`文件配置正确,特别是`&lt;welcome-file-list&gt;`元素,它定义了默认的欢迎页面。例如: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome...

    arcims9.2 adf java 开发简单实例图解2

    &lt;/welcome-file-list&gt; ``` 这一步是为了指定应用启动时默认加载的页面。 ##### 3.5 JSP 页面修改 最后,在 JSP 页面中添加 TOC 和 Overview 组件: ```html ``` 这里需要注意的是,如果需要使用 AJAX 功能...

    jsp(实现首页动态)java

    1. **定义欢迎页面**:在`web.xml`配置文件中定义欢迎页面列表`&lt;welcome-file-list&gt;`,该列表中可以指定多个文件名,Web容器会按照顺序尝试加载这些文件作为网站的首页。 ```xml &lt;welcome-file-list&gt; &lt;welcome-...

    修改tomcat主页

    - 查找`&lt;welcome-file-list&gt;`标签,并在其内部添加需要的主页文件名称,如: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;...

    在Tomcat 7.0中配置数据库连接池

    &lt;/welcome-file-list&gt; &lt;!-- 引用数据源 --&gt; &lt;resource-ref&gt; &lt;description&gt;DBConnection &lt;res-ref-name&gt;jdbc/sqlserver&lt;/res-ref-name&gt; &lt;res-type&gt;javax.sql.DataSource&lt;/res-type&gt; &lt;res-auth&gt;Container&lt;/res...

    servlet3.0新特性源代码

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; */ @SuppressWarnings(...

    xfire 5分钟开发一个完整实例.doc

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;default.html&lt;/welcome-file&gt; &lt;welcome-file&gt;...

Global site tag (gtag.js) - Google Analytics