关于java+flex项目欢迎页的问题

来源:互联网 发布:epub转换mobi 软件 编辑:程序博客网 时间:2024/05/21 19:44

开发了个flex和java的测试项目,因为flex文件比较多,所以创建flex时候,
在WebRoot下建立了文件夹bin,用来存储html和swf文件

想在浏览器输入http://localhost:8080/project直接可以访问文件夹下的html

第一,在WebRoot下建立index.jsp
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>

<html>
  <head>
    <title>My JSP 'index.jsp' starting page</title>
  </head>
  <body>
   <%
    response.sendRedirect("bin/Myweather.html");//用重定向,转发不可以
    %>
  </body>
</html>

第二,web.xml配置
<welcome-file-list>
 <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

原创粉丝点击