Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] First experiences using Jetty for unittest

Hm. I check a JspServlet source:

   39   import org.apache.juli.logging.Log;
   40   import org.apache.juli.logging.LogFactory;


On 2010-07-16 15:55, Tom wrote:
Wierd. I'm not using Juli either. The stack trace shows that the start method of Jetty's server class ends up in the JspServlet's constructor and from there calls Juli. Could it be some kind of dynamic logging configuration?

java.lang.NoClassDefFoundError: org/apache/juli/logging/LogFactory
    at org.apache.jasper.servlet.JspServlet.<init>(JspServlet.java:60)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
...
On 2010-07-16 15:43, Jesse McConnell wrote:
Also, aside from the jsp dependencies, none of those other things were
coming from missing dependencies in jetty itself, looks your webapp or
dependencies in your webapp, were trying to use stuff that were not
declared in your maven setup...


Back to the top