We shouldn't use the ActiveMQ shutdown hook -- we'll shut it down
gracefully during the Geronimo kernel shutdown process. In a normal
ActiveMQ config file you disable it with something like this:
<broker useShutdownHook="false" ...>
I haven't looked at our current ActiveMQ integration syntax but I
assume we can set that same property on the broker object/GBean.
Thanks,
Aaron
On 9/12/06, Jason Dillon <[EMAIL PROTECTED]> wrote:
I'm not sure if this was the same error that was reported before...
but I am seeing a CNFE when shutting down jetty j2ee (`java -jar bin/
sever.jar --long`) with CTRL-C:
<snip>
java.lang.NoClassDefFoundError: org/apache/activemq/broker/
BrokerService$2$1
at org.apache.activemq.broker.BrokerService$2.stop
(BrokerService.java:1137)
at org.apache.activemq.util.ServiceStopper.stop
(ServiceStopper.java:42)
at org.apache.activemq.broker.BrokerService.stop
(BrokerService.java:442)
at org.apache.activemq.broker.BrokerService.containerShutdown
(BrokerService.java:1311)
at org.apache.activemq.broker.BrokerService$3.run
(BrokerService.java:1288)
</snip>
This does not show up when using the shutdown command, or at least I
can't see it on the console when I use shutdown.sh, but it does show
up w/CTRL-C.
Is the shutdown hook, not using the right classloader or something?
--jason