Hi,
I am trying to integrate Spring RCP to my application (appfuse based).
The problem I have found is on this bean:
I couldn't found any definition of class org.springframework.samples.petclinic.ClinicCode:<!-- Hessian exporter for the Clinic --> <!-- Hessian is a slim binary HTTP remoting protocol --> <bean name="/Clinic-hessian" class="org.springframework.remoting.caucho.HessianServiceExporter"> <property name="service"><ref bean="clinic"/></property> <property name="serviceInterface"> <value>org.springframework.samples.petclinic.Clinic</value> </property> </bean>
Should this be the reference to bean:
Code:<bean id="clinic" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"> <property name="transactionManager"><ref local="transactionManager"/></property> <property name="target"><ref bean="hsqlClinic"/></property> <property name="transactionAttributes"> <props> <prop key="*">PROPAGATION_REQUIRED</prop> </props> </property> </bean>
Any help will be strongly appreciated.


Reply With Quote