[ 
https://issues.apache.org/jira/browse/CAMEL-3730?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13000723#comment-13000723
 ] 

marshal.s.lee commented on CAMEL-3730:
--------------------------------------

CXF-2.3,camel-2.5,
I use the example route as follow:
<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xmlns:cxf="http://camel.apache.org/schema/cxf";
       xmlns:jaxrs="http://cxf.apache.org/jaxrs";
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd
       http://camel.apache.org/schema/cxf 
http://camel.apache.org/schema/cxf/camel-cxf.xsd
       http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
       http://camel.apache.org/schema/spring 
http://camel.apache.org/schema/spring/camel-spring.xsd
    ">
  <!-- Defined the real JAXRS back end service  -->
  <jaxrs:server id="restService"
                        address="http://localhost:9002/rest"; 
                        staticSubresourceResolution="true">
    <jaxrs:serviceBeans>
      <ref bean="customerService"/>
    </jaxrs:serviceBeans>       
  </jaxrs:server>
  
  <!--  bean id="jsonProvider" 
class="org.apache.cxf.jaxrs.provider.JSONProvider"/-->

  <bean id="customerService" 
class="org.apache.camel.component.cxf.jaxrs.testbean.CustomerService" />
   
  <!-- Defined the server endpoint to create the cxf-rs consumer --> 
  <cxf:rsServer id="rsServer" address="http://localhost:9000/route";
    
serviceClass="org.apache.camel.component.cxf.jaxrs.testbean.CustomerService" />

  <!-- Defined the client endpoint to create the cxf-rs consumer -->
  <cxf:rsClient id="rsClient" address="http://localhost:9002/rest";
    
serviceClass="org.apache.camel.component.cxf.jaxrs.testbean.CustomerService"/>
  
  <!-- The camel route context -->
  <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring";>
    <route>
       <from uri="cxfrs://bean://rsServer"/>
       <!-- We can remove this configure as the CXFRS producer is using the 
HttpAPI by default -->
       <setHeader headerName="CamelCxfRsUsingHttpAPI">
         <constant>True</constant>        
       </setHeader>
       <to uri="cxfrs://bean://rsClient"/>
    </route>
  </camelContext>
  
</beans>

> Using CXFRS  ,"Error creating bean with name 'rsServer': Error setting 
> property values;"
> ----------------------------------------------------------------------------------------
>
>                 Key: CAMEL-3730
>                 URL: https://issues.apache.org/jira/browse/CAMEL-3730
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-cxf
>    Affects Versions: 2.5.0
>         Environment: JDK6,windows,jetty,OSGI
>            Reporter: marshal.s.lee
>            Priority: Critical
>             Fix For: 2.5.0
>
>
> org.springframework.beans.factory.BeanCreationNotAllowedException: Error 
> creating bean with name 'template': Singleton bean creation not allowed while 
> the singletons of this factory are in destruction (Do not request a bean from 
> a BeanFactory in a destroy method implementation!)
>       at 
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:209)
>  [org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory.isSingleton(AbstractBeanFactory.java:366)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:223)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeansOfType(DefaultListableBeanFactory.java:303)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.context.support.AbstractApplicationContext.getBeansOfType(AbstractApplicationContext.java:947)
>  [org.springframework.context_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.apache.cxf.bus.spring.SpringBeanLocator.getBeansOfType(SpringBeanLocator.java:59)
>  ~[org.apache.cxf.bundle_2.3.0.jar:2.3.0]
>       at org.apache.cxf.bus.CXFBusImpl.getExtension(CXFBusImpl.java:99) 
> ~[org.apache.cxf.bundle_2.3.0.jar:2.3.0]
>       at org.apache.cxf.bus.CXFBusImpl.shutdown(CXFBusImpl.java:185) 
> ~[org.apache.cxf.bundle_2.3.0.jar:2.3.0]
>       at org.apache.cxf.bus.CXFBusImpl.shutdown(CXFBusImpl.java:181) 
> ~[org.apache.cxf.bundle_2.3.0.jar:2.3.0]
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>  ~[na:1.6.0_17]
>       at java.lang.reflect.Method.invoke(Method.java:597) ~[na:1.6.0_17]
>       at 
> org.springframework.beans.factory.support.DisposableBeanAdapter.invokeCustomDestroyMethod(DisposableBeanAdapter.java:208)
>  [org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:165)
>  [org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:487)
>  [org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:462)
>  [org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:430)
>  [org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:388)
>  [org.springframework.context_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.access$301(AbstractDelegatedExecutionApplicationContext.java:69)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext$1.run(AbstractDelegatedExecutionApplicationContext.java:186)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.util.internal.PrivilegedUtils.executeWithCustomTCCL(PrivilegedUtils.java:85)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.normalRefresh(AbstractDelegatedExecutionApplicationContext.java:182)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext$NoDependenciesWaitRefreshExecutor.refresh(AbstractDelegatedExecutionApplicationContext.java:89)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.refresh(AbstractDelegatedExecutionApplicationContext.java:175)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> com.intalio.cloud.pipes.runtime.impl.PipesDeploymentHelper.deploy(PipesDeploymentHelper.java:55)
>  [cloud.pipes.runtime/:na]
>       at 
> com.intalio.cloud.pipes.runtime.tests.PipesTestSupport.createCamelContext(PipesTestSupport.java:175)
>  [cloud.pipes.runtime.tests/:na]
>       at 
> com.intalio.cloud.pipes.runtime.tests.WrappedCamelTestSupport.createCamelContext(PipesTestSupport.java:323)
>  [cloud.pipes.runtime.tests/:na]
>       at 
> org.apache.camel.test.junit4.CamelTestSupport.setUp(CamelTestSupport.java:96) 
> [org.apache.camel.camel-test_2.5.0.jar:2.5.0]
>       at 
> com.intalio.cloud.pipes.runtime.tests.PipesTestSupport.setUp(PipesTestSupport.java:242)
>  [cloud.pipes.runtime.tests/:na]
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>  ~[na:1.6.0_17]
>       at java.lang.reflect.Method.invoke(Method.java:597) ~[na:1.6.0_17]
>       at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
>  [junit.jar:na]
>       at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
>  [junit.jar:na]
>       at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
>  [junit.jar:na]
>       at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) 
> [junit.jar:na]
>       at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) 
> [junit.jar:na]
>       at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:76)
>  [junit.jar:na]
>       at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
>  [junit.jar:na]
>       at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner.run(ParentRunner.java:236) 
> [junit.jar:na]
>       at 
> org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
>  [org.eclipse.jdt.junit4.runtime_1.1.100.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:62)
>  [org.eclipse.pde.junit.runtime_3.4.100.v20100601.jar:na]
>       at 
> org.eclipse.pde.internal.junit.runtime.CoreTestApplication.run(CoreTestApplication.java:23)
>  [org.eclipse.pde.junit.runtime_3.4.100.v20100601.jar:na]
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>  ~[na:1.6.0_17]
>       at java.lang.reflect.Method.invoke(Method.java:597) ~[na:1.6.0_17]
>       at 
> org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:587)
>  [org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar:na]
>       at 
> org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:198)
>  [org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar:na]
>       at 
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
>  [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at 
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
>  [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at 
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) 
> [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at 
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) 
> [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>  ~[na:1.6.0_17]
>       at java.lang.reflect.Method.invoke(Method.java:597) ~[na:1.6.0_17]
>       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
>       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
>       at org.eclipse.equinox.launcher.Main.run(Main.java:1407) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
>       at org.eclipse.equinox.launcher.Main.main(Main.java:1383) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
> 10:53:45.540 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Retrieved 
> dependent beans for bean 
> 'org.apache.cxf.binding.soap.spring.SoapVersionRegistrar#1d63c55': 
> [org.apache.cxf.binding.soap.customEditorConfigurer]
> 10:53:45.555 [main] DEBUG c.i.c.p.r.i.PipesOsgiBundleXmlApplicationContext - 
> Refresh error
> org.springframework.beans.factory.BeanCreationException: Error creating bean 
> with name 'rsServer': Error setting property values; nested exception is 
> org.springframework.beans.PropertyBatchUpdateException; nested 
> PropertyAccessExceptions (1) are:
> PropertyAccessException 1: 
> org.springframework.beans.MethodInvocationException: Property 'serviceBeans' 
> threw exception; nested exception is java.lang.ExceptionInInitializerError
>       at 
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1279)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1010)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:472)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at java.security.AccessController.doPrivileged(Native Method) 
> ~[na:1.6.0_17]
>       at 
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
>  ~[org.springframework.context_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
>  ~[org.springframework.context_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.access$301(AbstractDelegatedExecutionApplicationContext.java:69)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext$1.run(AbstractDelegatedExecutionApplicationContext.java:186)
>  ~[org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.util.internal.PrivilegedUtils.executeWithCustomTCCL(PrivilegedUtils.java:85)
>  ~[org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.normalRefresh(AbstractDelegatedExecutionApplicationContext.java:182)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext$NoDependenciesWaitRefreshExecutor.refresh(AbstractDelegatedExecutionApplicationContext.java:89)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.refresh(AbstractDelegatedExecutionApplicationContext.java:175)
>  [org.springframework.osgi.core_1.2.1.jar:1.2.1]
>       at 
> com.intalio.cloud.pipes.runtime.impl.PipesDeploymentHelper.deploy(PipesDeploymentHelper.java:55)
>  [cloud.pipes.runtime/:na]
>       at 
> com.intalio.cloud.pipes.runtime.tests.PipesTestSupport.createCamelContext(PipesTestSupport.java:175)
>  [cloud.pipes.runtime.tests/:na]
>       at 
> com.intalio.cloud.pipes.runtime.tests.WrappedCamelTestSupport.createCamelContext(PipesTestSupport.java:323)
>  [cloud.pipes.runtime.tests/:na]
>       at 
> org.apache.camel.test.junit4.CamelTestSupport.setUp(CamelTestSupport.java:96) 
> [org.apache.camel.camel-test_2.5.0.jar:2.5.0]
>       at 
> com.intalio.cloud.pipes.runtime.tests.PipesTestSupport.setUp(PipesTestSupport.java:242)
>  [cloud.pipes.runtime.tests/:na]
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>  ~[na:1.6.0_17]
>       at java.lang.reflect.Method.invoke(Method.java:597) ~[na:1.6.0_17]
>       at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
>  [junit.jar:na]
>       at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
>  [junit.jar:na]
>       at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
>  [junit.jar:na]
>       at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) 
> [junit.jar:na]
>       at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) 
> [junit.jar:na]
>       at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:76)
>  [junit.jar:na]
>       at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
>  [junit.jar:na]
>       at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) 
> [junit.jar:na]
>       at org.junit.runners.ParentRunner.run(ParentRunner.java:236) 
> [junit.jar:na]
>       at 
> org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
>  [org.eclipse.jdt.junit4.runtime_1.1.100.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
>  [org.eclipse.jdt.junit.runtime_3.4.200.v20100526-0800.jar:na]
>       at 
> org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:62)
>  [org.eclipse.pde.junit.runtime_3.4.100.v20100601.jar:na]
>       at 
> org.eclipse.pde.internal.junit.runtime.CoreTestApplication.run(CoreTestApplication.java:23)
>  [org.eclipse.pde.junit.runtime_3.4.100.v20100601.jar:na]
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>  ~[na:1.6.0_17]
>       at java.lang.reflect.Method.invoke(Method.java:597) ~[na:1.6.0_17]
>       at 
> org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:587)
>  [org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar:na]
>       at 
> org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:198)
>  [org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar:na]
>       at 
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
>  [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at 
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
>  [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at 
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) 
> [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at 
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) 
> [org.eclipse.osgi_3.6.1.R36x_v20100806.jar:na]
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
> ~[na:1.6.0_17]
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>  ~[na:1.6.0_17]
>       at java.lang.reflect.Method.invoke(Method.java:597) ~[na:1.6.0_17]
>       at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
>       at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
>       at org.eclipse.equinox.launcher.Main.run(Main.java:1407) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
>       at org.eclipse.equinox.launcher.Main.main(Main.java:1383) 
> [org.eclipse.equinox.launcher_1.1.0.v20100507.jar:na]
> Caused by: org.springframework.beans.PropertyBatchUpdateException: Failed 
> properties: Property 'serviceBeans' threw exception; nested exception is 
> java.lang.ExceptionInInitializerError
>       at 
> org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:104)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:59)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       at 
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1276)
>  ~[org.springframework.beans_2.5.6.SEC01.jar:2.5.6.SEC01]
>       ... 66 common frames omitted

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to