补充:
com.bizproc.javabean.CustomerJavaBean所在的目录类似于E:\MyFiles\Projects\Telcom\EAI\WEB-INF\classes
该目录下有JavaBean也有EJB 

解决方案 »

  1.   

    How to get Address Books from XML file using mapping file
    2004-03-11 13:19:03  starlightpurple 
    Hi,Is your Person class in a package? If so you will need to modify the mapping.xml file to include the package name before the class name. For example if you put the Person class in a package called MyPackage you would make the following changes to the mapping.xml file:
    * change <class name="Person"> to:
    <class name="MyPackage.Person">
    * change <field name="persons" type="Person" collection="collection" /> to:
    <field name="persons" type="MyPackage.Person" collection="collection" />
      

  2.   

    lydong(西瓜水) ,我的mapping文件中的类名是采用的全路径阿!