Hi All,
i am using Spring and Quartz combination to trigger some batch jobs which are axis2 1.3 services.
i am facing a wiered issue.
My batch job application reloads on its own and that too after getting a response from one of the Axis2 service. my log is as below.
The strnage thing i could see is Spring is not able to find a class org.apache.commons.collections.map.LinkedMap
and another strnage thing is if i rerun my job it runs smoothly.. so it is very unprdictable behavior....
as you can see in the log it is not the real exception as i could also find on google people saying this is just a msg and we have to ignore it.
but my problem is why the appliation should reload again.
and as this is unprdictable behavior i cant find a soution.
any help or suggestions will be appreaciated.
Code:2008-05-08 14:20:26,262 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "000-05:00</InsertDate></Line><Line><XX.Invoice.Line.UserArea><XX.ShippedQuantity uom="EA">-2</XX.ShippedQuantity></XX.Invoice.Line.UserArea><Version>1</Versi" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "[\r]" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "[\n]" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "3" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "d" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "2" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "[\r]" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "[\n]" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG httpclient.wire.content - << "on><LineNumber>0002</LineNumber><OrderItem><ItemIds><Id>21-3870</Id></ItemIds></OrderItem><OrderQuantity uom="EA">-2</OrderQuantity><UnitPrice currency="USD">6.29</UnitPrice><ExtendedPrice currency="USD">-9.02</ExtendedPrice><TotalAmount currency="USD">-12.58</TotalAmount><InsertDate>2008-05-06T23:59:59.000-05:00</InsertDate></Line><Line><XX.Invoice.Line.UserArea><XX.ShippedQuantity uom="EA">-2</XX.ShippedQuantity></XX.Invoice.Line.UserArea><Version>1</Version><LineNumber>0003</LineNumber><OrderItem><ItemIds><Id>21-1030</Id></ItemIds></OrderItem><OrderQuantity uom="EA">-2</OrderQuantity><UnitPrice currency="USD">3.79</UnitPrice><ExtendedPrice currency="USD">-7.2</ExtendedPrice><TotalAmount currency="USD">-7.58</TotalAmount><InsertDate>2008-05-06T23:59:59.000-05:00</InsertDate></Line></Invoice></tns:InvoiceXML></tns:Data>" 2008-05-08 14:20:26,356 [DefaultQuartzScheduler_Worker-9] DEBUG com.XX.rebateautomation.service.InvoiceServiceImpl - Got response from invoice service 2008-05-08 14:21:06,571 [WrapperListener_start_runner] DEBUG org.springframework.util.ClassUtils - Class [org.apache.commons.collections.map.LinkedMap] or one of its dependencies is not present: java.lang.ClassNotFoundException: org.apache.commons.collections.map.LinkedMap 2008-05-08 14:21:06,571 [WrapperListener_start_runner] DEBUG org.springframework.util.ClassUtils - Class [edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap] or one of its dependencies is not present: java.lang.ClassNotFoundException: edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap2008-05-08 14:21:06,618 [WrapperListener_start_runner] DEBUG org.springframework.beans.factory.xml.PluggableSchemaResolver - Loading schema mappings from [META-INF/spring.schemas] 2008-05-08 14:21:06,618 [WrapperListener_start_runner] DEBUG org.springframework.beans.factory.xml.PluggableSchemaResolver - Loaded schema mappings: {http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd} 2008-05-08 14:21:06,618 [WrapperListener_start_runner] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [rebateAutomationContext.xml] 2008-05-08 14:21:06,633 [WrapperListener_start_runner] DEBUG org.springframework.beans.factory.xml.DefaultDocumentLoader - Using JAXP provider [org.apache.xerces.jaxp.DocumentBuilderFactoryImpl] 2008-05-08 14:21:06,930 [WrapperListener_start_runner] DEBUG org.springframework.beans.factory.xml.BeansDtdResolver - Found beans DTD [http://www.springframework.org/dtd/spring-beans.dtd] in classpath: spring-beans.dtd


Reply With Quote