+ All Categories
Home > Technology > Jeremy Spring Source Blaze Ds

Jeremy Spring Source Blaze Ds

Date post: 12-Jan-2015
Category:
Upload: skills-matter
View: 2,174 times
Download: 0 times
Share this document with a friend
Description:
 
Popular Tags:
31
Rapid RIA with Spring + Flex Jeremy Grelle Senior Member Technical Staff SpringSource a division of VMware (a.k.a, Open Source Web Dude) Wednesday, June 16, 2010
Transcript
Page 1: Jeremy Spring Source Blaze Ds

Rapid RIA with Spring + Flex

Jeremy GrelleSenior Member Technical Staff

SpringSource a division of VMware(a.k.a, Open Source Web Dude)

Wednesday, June 16, 2010

Page 2: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Agenda

• Spring Intro• Spring + Flex• BlazeDS and LiveCycle Data Services Overview• Remoting Review• Spring BlazeDS Integration• Future Roadmap and Preview• Q&A

Wednesday, June 16, 2010

Page 3: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

The Spring Philosophy

• Developers should be able to focus– on the particular business domain of an application– NOT infrastructural concerns

• Inversion of Control– the “Hollywood Principle”– don’t call us, we’ll call you...

3Wednesday, June 16, 2010

Page 4: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

The Spring Experience

• Spring aims to ease integration of a multitude of Java technologies

• A Spring developer is attracted to the “Spring Way” of doing things

– Common configuration approach for many disparate technologies

– Easy transition from “simple” to “enterprise”• i.e., Local transactions to full-blown JTA requires no

code changes 4

Wednesday, June 16, 2010

Page 5: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Why Flex + Spring?

• Spring has emerged as the de facto standard for the business tier of Java Enterprise applications.

• Spring aims to be agnostic to the chosen client technology.

• Flex is the obvious choice when a Spring developer is looking at RIA

• Don't have to abandon your server-side Spring investment to move into RIA

5

Wednesday, June 16, 2010

Page 6: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Serv

ices

Adap

ters

Chan

nels

Open Source BlazeDS

Long PollingPollingAMF

HTTP

MessagingProxy

Streaming

Producer ConsumerRemoteObject

Remoting

Piggyback

RPC

AMF

Pub/Sub

Real Time Push

Security

ColdFusionSQL

SpringWSRP

JMS Java

Client-side APIs

Server-side Infrastructure

Wednesday, June 16, 2010

Page 7: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Serv

ices

Adap

ters

Chan

nels

LiveCycle Data Services

Long Polling

NIO Streaming RTMPNIO Polling

PollingAMF

HTTP

MessagingProxy

NIO LongPolling

Streaming

Producer ConsumerRemoteObject Dataservice

Remoting Data Mgmt

Piggyback

Change Tracking

Data Sync

RPC

AMF

Pub/Sub

Real Time Push PDF

Security

Hibernate ColdFusionSQL

SpringWSRP

JMS Java

Client-side APIs

Server-side Infrastructure

Wednesday, June 16, 2010

Page 8: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Remoting Service

• Enables client applications to remotely invoke methods of objects deployed in your application server

• Type information is maintained (see Java - ActionScript data type mapping)

• Binary encoding of data (AMF: Action Message Format)

• Benefits– Straightforward programming model (avoid double XML

transformation)– Significant performance and bandwidth advantages

Wednesday, June 16, 2010

Page 9: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Remoting 101

<mx:RemoteObject id="srv" destination="product"/> <mx:Button label="Get Data" click="srv.getProducts()"/

> <mx:DataGrid

dataProvider="{srv.getProducts.lastResult} "/>

• remoting-config.xml<destination id="product">

<properties>

<source>flex.samples.ProductService</source>

</properties>

</destination>Wednesday, June 16, 2010

Page 10: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Using Spring - Old SpringFactory Approach

• services-config.xml<factories> <factory id="spring" class="flex.samples.factories.SpringFactory"/></factories>

• remoting-config.xml<destination id="productService"> <properties> <factory>spring</factory> <source>productBean</source> </properties></destination>

Wednesday, June 16, 2010

Page 11: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Spring -> Flex

• The old path was overly complex

– Using the “dependency lookup” approach of the SpringFactory feels antithetical to the “Spring Way”

– The burden of configuration is multiplied

– Potential for deep integration beyond just remoting is limited

– Ultimately acts as a potential barrier to adoption of Flex by the Spring community

11

Wednesday, June 16, 2010

Page 12: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

The Way Forward

• Ideally lower the barrier to adoption of Flex by the Spring community

– Configuration using the “Spring Way”

– Deeper integration beyond remoting

– Make Flex the obvious and easy choice for a Spring-powered RIA

• SpringSource and Adobe formed a joint partnership to turn this idea into reality 12

Wednesday, June 16, 2010

Page 13: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Open Source Foundation

• The foundations of this new integration are available as open source

– A new Spring subproject in the web portfolio:

Spring BlazeDS Integration

• Focus on integrating the open source BlazeDS with Spring

13

Wednesday, June 16, 2010

Page 14: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Spring BlazeDS Integration

• Bootstrap the BlazeDS MessageBroker as a Spring-managed bean (no more web.xml MessageBrokerServlet config needed)

• Route http-based Flex messages to the MessageBroker through the Spring DispatcherServlet

• Expose Spring beans for remoting using common Spring remoting exporter pattern– Using XML namespace tags or Java annotations– No more remoting-config.xml

14

Wednesday, June 16, 2010

Page 15: Jeremy Spring Source Blaze Ds

Demo

Wednesday, June 16, 2010

Page 16: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Spring BlazeDS Integration - Security• Spring Security integration

– Easily enabled through simple XML namespace tags

– SpringSecurityLoginManager enables use of Spring Security for Authentication through the Flex API

• optionally supports per-client authentication

– Gives access to the GrantedAuthorities for conditional UI logic

– Destinations (which are just Spring beans) are secured using existing Spring Security Authorization mechanisms

16

Wednesday, June 16, 2010

Page 17: Jeremy Spring Source Blaze Ds

Demo

Wednesday, June 16, 2010

Page 18: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Spring BlazeDS Integration - Messaging

• Messaging integration

– Integration with the BlazeDS MessageService• No more need for messaging-config.xml

– Use Spring configuration to manage BlazeDS MessageDestinations

– MessageTemplate provides simple server-push capabilities

– Adapters provided for Spring JMS and Spring Integration• Allows easy communication from Flex clients to Spring message-

driven POJOs 18

Wednesday, June 16, 2010

Page 19: Jeremy Spring Source Blaze Ds

Demo

Wednesday, June 16, 2010

Page 20: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Spring BlazeDS Integration - Advanced Customization

• Several hooks are provided for advanced customization

– ExceptionTranslator

– MessageInterceptor

– ManageableComponentFactoryBean• for integrating 3rd-party adapters (i.e., dpHibernate,

Gilead)

20

Wednesday, June 16, 2010

Page 21: Jeremy Spring Source Blaze Ds

Demo

Wednesday, June 16, 2010

Page 22: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

22

Productivity: More Important than Ever

• Must resolve first obstacle to Java in the cloud

• Expectations are higher than ever before• Success of Ruby on Rails et al has raised the bar for

building simpler applications• Developer choice crucial in determining cloud

– Cloud apps often new– Often start simple

• Java/JVM technologies perceived as complex

Wednesday, June 16, 2010

Page 23: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

23

Increasing Productivity: The Opinionation Pyramid

Grails/Roo

Spring

Servlet/other specifications

JVM

Ideal is to build on top of powerful, extensible layers

No need to move to introduce new runtime

Never hit a wall

Opinionated, Productive

Choice, Power

Wednesday, June 16, 2010

Page 24: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

24SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.

The most popular rapid development framework for the JVM

Solutions built on solid foundations

Grails

Wednesday, June 16, 2010

Page 25: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

25

Spring Roo Higher Java productivity

Familiar Java

– Roo uses the Java APIs and standards you already know and trust.

Usable and learnable

– Roo features an extremely high level of usability and an advanced shell

Trusted Spring Stack

– Roo has no runtime – It’s just Spring

Easy Roo removal

– Roo can be easily removed from a user project in under five minutes.

Wednesday, June 16, 2010

Page 26: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Spring Roo Flex Addon

• Build on the BlazeDS Integration foundation to provide full scaffolding of a Spring Roo domain model.– ActionScript entity source generation with round-

tripping– View scaffold generation (intended to be extensible, i.e.

to be tailored to use frameworks such as Spring ActionScript)

26

Wednesday, June 16, 2010

Page 27: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Spring BlazeDS Integration - Upcoming Features (post-1.0)• Spring 3.0 REST integration

– Provides support for multiple client-types

– Flex apps can already consume Spring 3.0 RESTful endpoints through HTTPService

– Additional value could be realized by providing an AMFView implementation

• Response for HTTP requests with a Content-Type=application/actionscript

• Hibernate serialization support– Make it easier to serialize Hibernate entities to AMF without

LazyInitializationException, etc.27

Wednesday, June 16, 2010

Page 28: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

LCDS Integration - Potential Features

• Enable users to easily take advantage of the advanced data synchronization features of LCDS using their existing service infrastructure

• Ensure smooth integration of existing BlazeDS Integration features with the LCDS NIO-based SocketServer

28

Wednesday, June 16, 2010

Page 29: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

LCDS Integration - Potential Features

• LCDS data Assemblers configured as Spring beans

– Enables them for declarative transaction control

• SpringHibernateAssembler that uses a Spring-managed Hibernate SessionFactory

– equivalent assembler for JPA

• Declarative annotation-based adaptation of existing Spring-managed DAOs to the Assembler interface

29

Wednesday, June 16, 2010

Page 30: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Summary

• Flex and Spring together provide a powerful solution for building enterprise class RIAs

• BlazeDS provides a proven open source foundation to build on for Flex->Java communication

• LCDS takes up where BlazeDS leaves off to provide a first-class supported enterprise solution

• Spring BlazeDS Integration makes Flex the obvious and easy choice for building a Spring-powered RIA

30

Wednesday, June 16, 2010

Page 31: Jeremy Spring Source Blaze Ds

SpringSource, a division of VMware. All rights reserved. Do not distribute without permission.

Questions?

• For additional info:

– http://www.springsource.org/spring-flex

– http://forum.springsource.org

– http://blog.springsource.com

31Wednesday, June 16, 2010


Recommended