0 Replies Latest reply on Aug 9, 2007 3:57 AM by changemylife

    How declare java.util.List<myObject>

    changemylife

      Hi all !

      Inside my bean, I use type

      List<myObject>
      . Example:
      public void createMedicalHistory(List<MedicalHistory> info);
      .
      After, I declare inside my ejb-jar.xml:
      <method-param>java.util.List(mypackage.MedicalHistory)</method-param>


      But, Jboss show:
      java.lang.ClassNotFoundException: No ClassLoaders found for: List(mypackage.MedicalHistory)
      .

      Please, help me to solve this problem! Thanks.