Commented out hessian and burlap remoting beans to avoid missing class exceptions on startup
This commit is contained in:
parent
12d8e14a61
commit
d6ee9a9a93
|
@ -33,16 +33,18 @@
|
||||||
|
|
||||||
<!-- Hessian exporter for the ContactManager -->
|
<!-- Hessian exporter for the ContactManager -->
|
||||||
<!-- Hessian is a slim binary HTTP remoting protocol -->
|
<!-- Hessian is a slim binary HTTP remoting protocol -->
|
||||||
|
<!--
|
||||||
<bean name="/ContactManager-hessian" class="org.springframework.remoting.caucho.HessianServiceExporter">
|
<bean name="/ContactManager-hessian" class="org.springframework.remoting.caucho.HessianServiceExporter">
|
||||||
<property name="service" ref="contactManager"/>
|
<property name="service" ref="contactManager"/>
|
||||||
<property name="serviceInterface" value="sample.contact.ContactManager"/>
|
<property name="serviceInterface" value="sample.contact.ContactManager"/>
|
||||||
</bean>
|
</bean>
|
||||||
|
-->
|
||||||
<!-- Burlap exporter for the ContactManager -->
|
<!-- Burlap exporter for the ContactManager -->
|
||||||
<!-- Burlap is a slim XML-based HTTP remoting protocol -->
|
<!-- Burlap is a slim XML-based HTTP remoting protocol -->
|
||||||
|
<!--
|
||||||
<bean name="/ContactManager-burlap" class="org.springframework.remoting.caucho.BurlapServiceExporter">
|
<bean name="/ContactManager-burlap" class="org.springframework.remoting.caucho.BurlapServiceExporter">
|
||||||
<property name="service" ref="contactManager"/>
|
<property name="service" ref="contactManager"/>
|
||||||
<property name="serviceInterface" value="sample.contact.ContactManager"/>
|
<property name="serviceInterface" value="sample.contact.ContactManager"/>
|
||||||
</bean>
|
</bean>
|
||||||
|
-->
|
||||||
</beans>
|
</beans>
|
||||||
|
|
Loading…
Reference in New Issue