In CXF 2, I could set this level:
<jaxws:client name="client"> <jaxws:features> <bean class="org.apache.cxf.transport.jms.JMSConfigFeature"> <property name="jmsConfig" ref="jmsConfig"/> </bean> </jaxws:features> </jaxws:client> <bean id="jmsConfig" class="org.apache.cxf.transport.jms.JMSConfiguration"> <property name="cacheLevel" value="3"/> </bean>
However, in CXF 3, the cacheLevel property is missing in org.apache.cxf.transport.jms.JMSConfiguration .
How to set cache level in CXF 3?
Thanks in advance.
source share