
|
If you were logged in you would be able to see more operations.
|
|
|
|
In the org.quartz.ee.servlet.QuartzInitializerListener javadoc the example fragment for the web.xml states:
<listener>
<listener-class>
org.quartz.ee.servlet.QuartzInitializerServletListener
</listener-class>
</listener>
which obviusly doesn't work because the class name is wrong. It should read:
<listener>
<listener-class>
org.quartz.ee.servlet.QuartzInitializerListener
</listener-class>
</listener>
It may seem a trivial issue, but has the potential to seriously mislead a user or at least make him lose lots of time. I'm lucky I spotted it quite easily!
Michele Mauro
|
|
Description
|
In the org.quartz.ee.servlet.QuartzInitializerListener javadoc the example fragment for the web.xml states:
<listener>
<listener-class>
org.quartz.ee.servlet.QuartzInitializerServletListener
</listener-class>
</listener>
which obviusly doesn't work because the class name is wrong. It should read:
<listener>
<listener-class>
org.quartz.ee.servlet.QuartzInitializerListener
</listener-class>
</listener>
It may seem a trivial issue, but has the potential to seriously mislead a user or at least make him lose lots of time. I'm lucky I spotted it quite easily!
Michele Mauro
|
Show » |
|
QUARTZ-545" src/Sending src/java/org/quartz/ee/servlet/QuartzInitializerListener.java
Transmitting file data .
Committed revision 668.