1 Reply Latest reply on Jul 26, 2005 5:34 AM by sriramp_here

    use "normal" class (POJP) that inherits from an external cla

    dan-b

      Heya!

      Imagine the following structure:

      net.danb.example.src
      SessionBean.java
      Pojo.java
      de.dtnet.example
      Abstract.java

      SessionBean creates an instance of Pojo (a normal java class) which extends Abstract, also a normal java class. My ant task compiles everything under net.danb.example.src, creates a jar, an ear etc. and deploys it to the server. No compile or deploy error whatsoever here. But if I run a JUnit test on the SessionBean, the instantiation of Pojo fails with an NoClassDefFoundException.

      I guess that I somehow have to include the package de.dtnet.example in my build and also deploy it to the server? But how is this to be done?

      Can anyone help me with this please? Do you have some information, link, tutorial, book, ... ?

      Thank you!
      -Danny

        • 1. Re: use

          I am not sure about this. According New Java Spec says that if the package is null then we may get this Exception. Make sure that your classes are in porper package.