91-9990449935 0120-4256464 |
Remoting in Spring FrameworkSpring framework makes the developement of remote-enabled services easy. It saves a lot of code by providing its own API. Advantage of Spring RemotingThe programmer needs to concentrate on business logic only not plumbing activities such as starting and stopping the server. Spring framework supports following remoting technologies:
Remote Method Invocation (RMI)By the help of RmiServiceExporter and RmiProxyFactoryBean classes, spring framework supports RMI provided by Sun. Click here to get details about Spring and RMI Integration Spring's HTTP invokerSpring provides its own remoting service that allows serialization by HTTP. The classes used in HTTP Invoker are HttpInvokerServiceExporter and HttpInvokerProxyFactoryBean. Click here to get details about Spring Remoting by Http Invoker HessianIt also provides remoting service by using http protocol. It is provided by Coucho. The classes used in Hessian are HessianServiceExporter and HessianProxyFactoryBean. Click here to get details about Spring Remoting by Hessian BurlapIt is same as Hessian but XML-based implementation provided by Coucho. The classes used in Burlap are BurlapServiceExporter and BurlapProxyFactoryBean. Click here to get details about Spring Remoting by Burlap JAX-RPCSpring provides remoting support for web services using JAX-RPC. It uses J2EE 1.4 API. JAX-WSIt is the successor of JAX-RPC. It uses Java EE 5 and Java EE 6 API. The classes used in JAX-WS are SimpleJaxWsServiceExporter and JaxWsPortProxyFactoryBean. JMSSpring supports remoting service using JMS. The classes used in JMS are JmsInvokerServiceExporter and JmsInvokerProxyFactoryBean.
Next TopicSpring A And RMI Integration
|