Hi,

I had my webapp running using Spring 3 with CXF 2.2.8 and decided to upgrade
to CXF 2.3.1.
Now the webapp doesn't startup correct anymore. It gives the following
exception:

Caused by:
org.springframework.beans.factory.BeanCurrentlyInCreationException: Error
creating bean with name 'campaignManager':
org.springframework.beans.factory.FactoryBeanNotInitializedException:
FactoryBean is not fully initialized yet

This is caused by the following bean:

    <bean id="campaignManager"
       
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
        <property name="transactionManager" ref="transactionManager"/>
        <property name="target" ref="campaignManagerTarget"/>
        <property name="transactionAttributes">
            <props>
                <prop
key="delete">PROPAGATION_REQUIRED,ISOLATION_READ_COMMITTED</prop>
                <prop key="*">PROPAGATION_REQUIRED</prop>
            </props>
        </property>
    </bean>
    
It seems that Spring is trying to set the properties of the
TransactionProxyFactoryBean 
before it is actually loaded...?

Does anyone have an idea what could be causing this?
-- 
View this message in context: 
http://cxf.547215.n5.nabble.com/Upgrade-to-2-3-1-causes-webapp-startup-problems-tp3305973p3305973.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to