gwt - building rich internet applications using oo tools

37
Google Web Toolkit - Build Rich Web Applications with OO Tools Benjamin Arciszewski Senior Software Engineer - StudyBlue

Upload: barciszewski

Post on 18-May-2015

1.030 views

Category:

Technology


2 download

DESCRIPTION

5/9/2012 Presentation by Benjamin Arciszewski to Madison Java Users Group on the Google Web Tookit

TRANSCRIPT

Page 1: GWT - Building Rich Internet Applications Using OO Tools

Google Web Toolkit - Build Rich Web Applications with OO ToolsBenjamin ArciszewskiSenior Software Engineer - StudyBlue

Page 2: GWT - Building Rich Internet Applications Using OO Tools

Today's Agenda

● Introduce GWT and talk about what it is, why it's different and why you should use it

● Talk about good/bad of the toolkit● Describe the components of GWT at a high

level● Go through the anatomy of a project● Walk through a sample app that is a little

more complex than 'hello world'● Bring it all together by showing some of the

functionality on StudyBlue.com

Page 3: GWT - Building Rich Internet Applications Using OO Tools

Purpose

To get you excited about GWT and to build a large community of GWT users in Wisconsin so StudyBlue has a large pool of qualified developers to choose from as we grow...

Page 4: GWT - Building Rich Internet Applications Using OO Tools

Something to think about...

How many Java LOC are in the StudyBlue Web application (method used is Eclipse metrics plugin, only com.sb.* packages)?

Page 5: GWT - Building Rich Internet Applications Using OO Tools

10 Second History of the Web

● Web pages● Interactive Web pages● Web applications● Rich Internet Applications

Page 6: GWT - Building Rich Internet Applications Using OO Tools

Traditional Frameworks

● MVC ○ Struts○ Struts II

● Component-based○ JSF○ Tapestry

● SOUI (AJAX)○ Ext JS○ DOJO○ jQuery

Page 7: GWT - Building Rich Internet Applications Using OO Tools

Difficulty of traditional MVC frameworks

● Mixed languages○ Server

■ java, ruby, php, C#,...■ templates (HTML,XML, markup...)■ Glue languages (OGNL)

○ Client■ JavaScript■ HTML

● Server vs. Client○ No sharing of code○ Lots of config○ Lots of conversion

Page 8: GWT - Building Rich Internet Applications Using OO Tools

Difficulty of Traditional Web Frameworks, continued

● Complex project setups○ Server-side code○ Client side code○ Templates○ Static files○ JavaScripts

Page 9: GWT - Building Rich Internet Applications Using OO Tools

Ultimate Issue?

● They all treat Rich Internet Applications as Web Pages!

Page 10: GWT - Building Rich Internet Applications Using OO Tools

Browser?

● Rich Object Model● Performant Script processing engine (V8)● Local persistence● Rich Graphics (Canvas)● Rich set of programming APIs● Complete set of events

Page 11: GWT - Building Rich Internet Applications Using OO Tools

What is GWT?

Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. GWT is used by many products at Google, including Google AdWords and Orkut. It's open source, completely free, and used by thousands of developers around the world. From:https://developers.google.com/web-toolkit/

Page 12: GWT - Building Rich Internet Applications Using OO Tools

What is GWT?

GWT, aka the Google Web Toolkit, or "Gwit" as their team likes to say (which is a stupid pronunciation), is a Java skin on the Javascript language. It allows objected oriented, strictly-typed programming fans to work seamlessly with pixel perfect, anal retentive HTML/CSS gurus. In addition it provides tons of optimizations for code efficiency, internationalization, resource bundling, etc. Finally, it's flexible enough that you can bake it into any type of web application, using any type of server-client communication From:Chris Klunt, President andCo-Founder - StudyBlue

Page 13: GWT - Building Rich Internet Applications Using OO Tools

What is GWT?

GWT is a client-side framework for developing rich internet applications in Java, taking advantage of all of the tools that come with a high-level language like Java. From:Dale Beerman, Chief Technical Architect - StudyBlue

Page 14: GWT - Building Rich Internet Applications Using OO Tools

How GWT is Different

● Code is in Java (mostly)● 'compiled' to js/html ● No need for

○ page templates○ 'glue languages'○ scripting

● Full use of Java tool stack○ Eclipse debugger○ Code complete○ Continuous compilation

● Shared code between client/server

Page 15: GWT - Building Rich Internet Applications Using OO Tools

Practical Description of GWT

● Set of tools that turn Java into html/js.○ Eclipse Plugin○ Project Generator○ J2SE proxy libraries ○ Compiler○ Browser Plugin (for development)○ Java Widget and Service API○ RPC mechanism○ WYSIWYG Visual Editor (We don't use)

Page 16: GWT - Building Rich Internet Applications Using OO Tools

Advantages for doing it this way...

● Code is optimized for each browser during compile (read: optimization)

● Full OO abstractions: inheritance, polymorphism, encapsulation, extension

● One single language (mostly)● Ability to bind to 'native' JS when needed● Code re-use

○ Components, Widgets and Services● High quality, easily usable, libraries

Page 17: GWT - Building Rich Internet Applications Using OO Tools

Disadvantages

● Compile can be slow (especially w/ i18n)○ One version for each browser, for each language,

exponential growth...● Plugin used for local testing in browser● Give up some control (but not as much as

you might think)● GWT Unit tests are SLOW● You sometimes think you are in Java

Page 18: GWT - Building Rich Internet Applications Using OO Tools

Anatomy of a GWT Project

● Java code○ client - compiled to js/html and run in browser○ server - compiled to java and run on server○ shared - both (must be compliant w/ client)

● .gwt.xml - configuration file● .html host file - that will include your code● .css file - for styling

Page 19: GWT - Building Rich Internet Applications Using OO Tools

GWT - RPC

● It's like magic○ Define an Interface○ Define an implementation in server○ Define an implementation w/ callback in client.

● To Configure○ Create an interface in client○ Create an asynchronous interface in client○ Create an implementation on server that extends

RemoteServiceServlet○ Configure Servlet in web.xml

● To use○ Get the Async version from GWT (GWT.create)○ Make calls, receive response in Callback

Page 20: GWT - Building Rich Internet Applications Using OO Tools

UI code

● Widgets (Java objects)○ Your code creates views via Extension and/or

Composition● Customizable● Configurable● Similar to Swing ● Extensible● Optional .ui.xml file bindings (StudyBlue)

Page 21: GWT - Building Rich Internet Applications Using OO Tools

Project Structure

Page 22: GWT - Building Rich Internet Applications Using OO Tools

Organization - Config

Page 23: GWT - Building Rich Internet Applications Using OO Tools

Organization - src

Page 24: GWT - Building Rich Internet Applications Using OO Tools

Organization - war

Page 25: GWT - Building Rich Internet Applications Using OO Tools

Interaction - Host Page - JavaScript

<script type="text/javascript" language="javascript" src="jugsampleapp/jugsampleapp.nocache.js"></script>

Page 26: GWT - Building Rich Internet Applications Using OO Tools

Interaction - Host page - Elements

<h1>JUG Sample Application</h1> <div id="searchWrapper"> <div id="editor"><!-- GWT ... --></div> <div id="buttons"><!-- GWT ... --></div> </div> <div id="cardWall"> <div id="cardList" class="cardBox"><!-- GWT ... --></div> </div>

Page 27: GWT - Building Rich Internet Applications Using OO Tools

Interaction - Execution Start

● EntryPoint.onModuleLoad● In our sample: JugSampleApp

Page 28: GWT - Building Rich Internet Applications Using OO Tools

Interaction - RPC

● CardService (client)● CardServiceAsync (client)● CardServiceImpl extends

RemoteServiceServlet implements CardService(server)

Page 29: GWT - Building Rich Internet Applications Using OO Tools

Sample Project

Page 30: GWT - Building Rich Internet Applications Using OO Tools

Bring it together - Cardwall

Page 31: GWT - Building Rich Internet Applications Using OO Tools

Bring it all together - Preview

Page 32: GWT - Building Rich Internet Applications Using OO Tools

Bring it all together - Edit

Page 33: GWT - Building Rich Internet Applications Using OO Tools

Bring it all together - Flip

Page 34: GWT - Building Rich Internet Applications Using OO Tools

Bring it all together - Quiz

Page 35: GWT - Building Rich Internet Applications Using OO Tools

How many LOC are in our app?

Page 36: GWT - Building Rich Internet Applications Using OO Tools

Answer:

About 66,000

Page 37: GWT - Building Rich Internet Applications Using OO Tools

StudyBlue Any questions?Benjamin ArciszewskiSenior Software Engineer - StudyBlue