不好意思,漏了一段
004-12-23 13:02:11 Unable to compile class for JSPAn error occurred at line: -1 in the jsp file: nullGenerated servlet error:
    [javac] Since fork is true, ignoring compiler setting.
    [javac] Compiling 1 source file
    [javac] Since fork is true, ignoring compiler setting.
    [javac] javac: invalid flag: C:\Program
    [javac] Usage: javac <options> <source files>
    [javac] where possible options include:
    [javac]   -g                        Generate all debugging info
    [javac]   -g:none                   Generate no debugging info
    [javac]   -g:{lines,vars,source}    Generate only some debugging info
    [javac]   -nowarn                   Generate no warnings
    [javac]   -verbose                  Output messages about what the compiler is doing
    [javac]   -deprecation              Output source locations where deprecated APIs are used
    [javac]   -classpath <path>         Specify where to find user class files
    [javac]   -sourcepath <path>        Specify where to find input source files
    [javac]   -bootclasspath <path>     Override location of bootstrap class files
    [javac]   -extdirs <dirs>           Override location of installed extensions
    [javac]   -d <directory>            Specify where to place generated class files
    [javac]   -encoding <encoding>      Specify character encoding used by source files
    [javac]   -source <release>         Provide source compatibility with specified release
    [javac]   -target <release>         Generate class files for specific VM version
    [javac]   -help                     Print a synopsis of standard options

解决方案 »

  1.   

    <%
    /**
     * 从Browser读取客户信息,并写入UserFormBean中,forward到UserCommand
     */
    %>
    <%@ page contentType="text/html; charset=GBK" %>
    <%@ page import="com.hongsoft.res.util.ViewMap,
                     com.hongsoft.res.dispatcher.*,
                     com.hongsoft.res.command.*"%>
    <jsp:useBean id="userFormBean" scope="request" class="com.hongsoft.res.formbean.UserFormBean" />
    <jsp:setProperty name="userFormBean" property="*" />
    <%
    request.setAttribute(BaseParamName.COMMAND_NAME,"userCmd");
    request.setAttribute(ResParamName.USER_FORM_BEAN_PARAM,userFormBean);
    request.getRequestDispatcher("../dispatcherservlet").forward(request,response);
    %>
      

  2.   

    Compile failed
    这可能是你的环境设置不对,如果是程序有错误好象不是这么报错的。你检查一下你的环境设置。
      

  3.   

    问题解决了,是tomcat版本的问题。