Posts

Showing posts from September, 2009

JavaFX 1.2+ Spring + Hibernate

Related to discussions going on in BoJUG , I was tempted to develop a Proof-of-Concept for using JavaFX as view technology in a web application backed by spring and hibernate stack . Well Spring already provides remoting support for communicating to rich clients. Currently,spring supports four remoting technologies . In my application, I am using Spring's HTTP Invoker which allows for Java serialization via HTTP, supporting any Java interface (just like the RMI invoker). The corresponding support classes are 1) org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean is a factory bean for HTTP invoker proxies. It behaves like the proxied service when used as bean reference, exposing the specified service interface. Serializes remote invocation objects and deserializes remote invocation result objects. 2) org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter is an HTTP request handler that exports the specified service bean as HTTP invoker service endpoint,