书中项目导入问题
发表在JavaWeb图书答疑 2009-03-20
是否精华
版块置顶:
 坛主:
          您好!
          我将《JSP项目开发全程实录》第六章中办公自动化管理系统项目导入MyEclipse中,在tomcat浏览器中运行时出现以下问题,我重新安装TOMCAT、JDK、ECLIPSE、MYECLISE,问题依旧,导入其它项目入MyEclipse也如此,但按你们书中视频所讲运行毫无问题,另外在default.jsp调用top.jsp时MyEclipse报错“
Description Resource Path Location Type
UserForm cannot be resolved to a type default.jsp test/WebRoot/WEB-INF line 13 JSP Problem
UserForm cannot be resolved to a type default.jsp test/WebRoot/WEB-INF line 13 JSP Problem
UserForm cannot be resolved to a type default.jsp test/WebRoot/WEB-INF line 13 JSP Problem
”, 在MyEclipse浏览index.jsp等网页操作界面时出现提示信息"您登录的网页已经过期,请重新登录",
我现将我电脑上有关信息列举如此,请贵公司高手帮我好好分析一下,谢谢!!!



HTTP Status 404 - /test/

--------------------------------------------------------------------------------

type Status report

message /test/

description The requested resource (/test/) is not available.


--------------------------------------------------------------------------------

Apache Tomcat/6.0.18







jdk安装版本:java_ee_sdk-5_06-windows-ml.exe     jdk-6u10-nb-6_5-windows-ml.exe
jdk安装路径:C:\Program Files\Java\jdk1.6.0_10   C:\Program Files\Java\jre6
tomcat安装版本:apache-tomcat-6.0.18
tomcat安装路径:C:\Tomcat 6.0
eclipse解压版本:eclipse-SDK-3.4.1-win32.zip
eclipse解压路径:C:\eclipse
myeclipse安装版本:MyEclipseEnterpriseWorkbenchInstaller_5.1.0GA_E3.2.1
myeclipse安装路径:C:\Program Files\MyEclipse Enterprise Workbench 5.1.0 GA
myeclipse工作区间:C:\Tomcat 6.0\webapps

环境变量:
    JAVA_HOME: C:\Program Files\Java\jdk1.6.0_10
    CLASS_PATH: .;%JAVA_HOME%\lib\tools.jar
    Path: %JAVA_HOME%\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN

server.xml:

<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
  <filter>
     <filter-name>myfilter</filter-name>
     <filter-class>com.struts.filter.MyFilter</filter-class>
  </filter>
  <filter-mapping>
     <filter-name>myfilter</filter-name>
     <url-pattern>/*</url-pattern>
  </filter-mapping>
  <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
      <param-name>debug</param-name>
      <param-value>3</param-value>
    </init-param>
    <init-param>
      <param-name>detail</param-name>
      <param-value>3</param-value>
    </init-param>
    <load-on-startup>0</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
  <taglib>
     <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
     <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
  </taglib>
   <taglib>
     <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
     <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
  </taglib>
   <taglib>
     <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
     <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
  </taglib>
   <taglib>
     <taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri>
     <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
  </taglib>
  
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

分享到:
精彩评论 5
luling6712
学分:0 LV1
2009-03-22
沙发
请问,楼主是怎样将《JSP项目开发全程实录》中的项目导入的?
我在导入项目后会有一些页面错误(已经导入相关支持包),而且很多JSP文件也没有在WebRoot根目录下,请问你是怎么调整的?
无语_mrkj
学分:3155 LV11
2009-03-24
板凳
[FIELDSET][LEGEND]引自:1楼[/LEGEND]
请问,楼主是怎样将《JSP项目开发全程实录》中的项目导入的?
我在导入项目后会有一些页面错误(已经导入相关支持包),而且很多JSP文件也没有在WebRoot根目录下,请问你是怎么调整的?
[/FIELDSET]

回复:
将光盘中的程序导入MyEclipse中的具体步骤如下:
(1)在MyEclipse中创建Web项目。
(2)将程序中所需的包构建到项目中,或是直接拷贝到项目中的lib文件夹中。
(3)将src文件夹下的全部内容拷贝到新建项目的src文件夹中。
(4)将光盘中的除src和database文件夹以外的全部内容拷贝到新建项目的webroot文件夹中。
(5)附加数据库。  
无语_mrkj
学分:3155 LV11
2009-03-24
地板
您这个问题可能是没有找到相应的类文件引起的。在光盘中,本实例的程序中忘记提供Java源文件了,您可以到http://www.mingribook.com的技术支持栏中下载。具体网址如下:
http://www.mingribook.com/zyinfo-30.shtml
tomarsli
学分:0 LV1
2009-03-26
4L
   对不起!我已按照您介绍的方法去做(已到本站技术支持下载与正确导入项目),同时又删除userform类问题还是如此,导入其它项目也显示如此信息,非常渴望您们能给我一个满意的答复
无语_mrkj
学分:3155 LV11
2009-03-27
5L
在后面的帖子中继续解决。
首页上一页 1 下一页尾页 5 条记录 1/1页
手机同步功能介绍
友情提示:以下图书配套资源能够实现手机同步功能
明日微信公众号
明日之星 明日之星编程特训营
客服热线(每日9:00-17:00)
400 675 1066
mingrisoft@mingrisoft.com
吉林省明日科技有限公司Copyright ©2007-2022,mingrisoft.com, All Rights Reserved长春市北湖科技开发区盛北大街3333号长春北湖科技园项目一期A10号楼四、五层
吉ICP备10002740号-2吉公网安备22010202000132经营性网站备案信息 营业执照