SlideShare a Scribd company logo
GWT Reloaded
Building complex browser-based applications in Java 8
© 2016 by Marcin Szałomski
Topics
❏ What is GWT and who stands behind it?
❏ GWT retrospection (2006-2016)
❏ The Future of GWT
❏ What about the popular JS frameworks?
❏ Why do we still need GWT?
❏ Who and how is using GWT?
❏ How to use GWT?
❏ Errai Framework - Java EE In The Browser.
❏ Useful links
Google Web Toolkit? Still Google?
It was originally created and developed by Google.
Now? Google - member of the GWT Open Source Project.
So who’s the boss? (late 2011-...)
GWT Steering committee : Google, Vaadin, Sencha, RedHat, Arcbees,
Bizo, Jetbrains, Thomas Broyer and Colin Alworth.
(to ensure that no particular individual, group or organization can gain
control over the project)
What’s changed? The project gets better!
Java to JavaScript compiler.
❏ open-source, completely free,
❏ the active community,
❏ still developed and maintained
❏ lots of tools and libs around
❏ GWT.create, GWTcon ,
conferences,
❏ used by thousands of
developers around the world,
❏ ...
GWT?
Development toolkit for building
and optimizing complex browser-
based applications. Its goal is to
enable productive development
of high-performance web
applications without the
developer having to be an expert
in browser quirks,
XMLHttpRequest, and JavaScript.
GWT in the Past
❏ ...was born in Google (2006)
❏ graduated to open source in
late 2011 (steering committee)
❏ in 2006 browsers and
JavaScript were far from
standards (jQuery just
announced for the first time!)
❏ almost lack of HQ alternative,
❏ The goal: browsers tricks
hidden for developers
Ok, but the web has changed over
the past decade. We have now a
lot of awesome front-end
frameworks like: Angular, Polymer
or React.
Do we still
need GWT?
GWT Reloaded
Why do we still need GWT? [1 of 2]
JavaScript became lingua franca
of front-end applications.
But developers need better tools.
OK, we have: ES6+, CoffeeScript,
TypeScript, JSweet, Dart, …
Developers need stronger typing!
Weakly typed language may
produce unpredictable results!
Future of JavaScript?
❏ There was JavaScript in 1996,
❏ There was JavaScript in 2006
❏ There is JavaScript in 2016
❏ … who knows…
❏ ...the future? WebAssembly?
GWT alternative? Kotlin.js ,
Scala.js , Ceylon and more …
even other tools for Java.
such as the importance of the JavaScript has grown each year
Why do we need stronger typing?
Is JavaScript so bad? What about the EcmaScript 6 or TypeScript?
ES6 doesn’t support for types.
TypeScript offers support for types, but doesn’t support strong type system.
Strong typing guarantees your code is free of silly mistakes.
No more mixing up strings or numbers, forgetting what keys an object has,
or worrying about typos in your method names.
It also provides easy and reliable refactoring and reliable code completion.
* - This nice explanation has been taken from the Scala.JS site.
Why do we still need GWT? [2 of 2]
Principles: DRY and DIE! Reuse, reuse, reuse, ...!
Cross-platform approach. One Java code base, various platforms.
… mobile web, native targets like mobile devices
… and perhaps even the IOT... To reuse even Java Backend code …
...JAVA, JAVA, ...
...for native consider also:
Titanium4J (GWT),
Intel Multi-OS Engine or
Codename One...
Reuse: business logic,
model, validation, etc.
Titanium4J or
Codename One helps
you even with the UI.
More tech:
❏ JSInterop: @JSType and
@JSProperty
instead of JSNI or JSO,
❏ Super Dev Mode (edit-refresh),
❏ GSS Support ,
❏ J2CL (Java-to-CLosure aka
Jackal) - Closure Compiler ,
❏ Elemental 2.0, …
GWT in the Future // GWT 3.0
Simple summary:
❏ 2.8.0 beta already available,
❏ 3.0 in development,
What has changed:
❏ reinvented interoperability
with JavaScript,
❏ new improved compiler,
❏ Java 8 support!
For more please see this: presentation and the article .
Additional
references:
GWT and Java 8
GWT 2.8 allows us to enjoy Java 8. Further benefits are eg. FRP (Reactive).
Actually it's nothing new, but lot of projects stucked in the previous GWT
version. The reason to switch? Please see this presentation (starting from
slide #20). One of the key features - lambda expressions:
Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand() {
@Override
public void execute() {
$(image).css("display", "block");
}
});
Scheduler.get().scheduleDeferred(() -> $(image).css("display", "block"));
JAVA 7
JAVA 8
Who is using GWT?
GWT is used by many products at
Google, including:
AdWords, AdSense, Flights, Hotel
Finder, Offers, Wallet, Blogger,
Google Sheets, Parts of Maps and
Google Inbox (May 28, 2015 -
officially opened).
One App, Many Platforms
Java code reused ➤ Inbox Web uses GWT JsInterop ➤ Inbox iOS uses J2ObjC
Recently Google announced that has rewritten the AdWords UI using Dart .
So what does it mean for GWT? I’ve compared both after reading the
interview with primary technical lead: Explained with the details here .
[x] Dart [x] GWT transpiles well to Javascript
[_] Dart [x] GWT switch tech stacks easily
[_] Dart [x] GWT stronger type checking
[_] Dart [x] GWT fast edit refresh
[x] Dart [x] GWT new js interop
[x] Dart [x] GWT being terse
[x] Dart [x] GWT frameworks available
[_] Dart [x] GWT native apps
What about the AdWords?
Who else is using GWT?
Please find “The Future of GWT
Report 2015” here .
Mostly for large-scale web
applications like:
❏ Internal and External business
applications,
❏ Content-rich websites…
Why?
❏ maintainability of the code is
important
How to use GWT?
Presentation - building Polymer
Elements powered app with
Vaadin Framework: .
Presentation introducing Errai
Framework .
Btw. it’s worth mentioning that
GWT can be also used to create
non browser based apps using
Node.js, since it’s Java to JS
compiler.
Errai Framework?
❏ building full-stack web apps,
❏ type-safe and declarative,
❏ “It's better to have less code
that clearly expresses intent”
❏ convention over configuration,
❏ Share code between the client
and the server,
❏ DRY: Reuse your data model,
validation and business logic,...
boilerplate is bad
Errai Framework
❏ Client-side dependency
injection (consistent with CDI)
❏ Client-side templating
❏ 2-way data-binding
❏ Dynamic runtime module
support (using JsInterop)
❏ qualifier annotations to
determine what dependencies
a bean satisfies,
❏ Constructor field and setter
injections,
❏ More CDI and EJB features:
@Alternative, @Specializes,
@Produces, scopes, CDI
Events, JPA, ...
❏ injecting native JavaScript
objects into IoC beans with JS
interop,
❏ Support for native DOM-based
UI,
❏ Support for GWT 2.8 + Java 8.
… loose coupling, easy reuse, …
Errai - how to cook with it (Errai UI example)
❏ bind Java class elements to
elements in an HTML template,
❏ template files can be HTML
fragments or full pages,
❏ the HTML file is the template,
❏ the Java class is a templated
bean.
❏ data fields can be @Bound to
the model and automatically
updated.
MyForm.html
Errai - Data Binding
The name and dob fields are @Bound
They are kept in sync by binder.
This class is @Bindable with two properties
Going the other direction
More Errai examples?
Presentation introducing Errai
Framework .
Getting started
Reference
Please watch this 6 minutes
movie showing Errai in action
(TODO List app creating).
(referers to the quite old Errai version but it’s still worth watching)
GWTP (video), Tessell (video),
MVP4G, and more …
How about the UI?
GWT Polymer (tutor, showcase),
Vaadin (demo), Sencha GXT (doc),
native apps in Titanium4J (videos)
GWTMaterialDesign (demo #1,
demo #2, demo #3, demo #4),
Smart GWT (showcase),
GwtBootstrap3 (demo), jqm4gwt
(jQuery Mobile showcase), ...
What if not Errai?
GWT 3 way of using UI. Widgets
will be depreciated. Using the
new JSInterop and Elemental it
should be now possible to simply
use any 3rd
party JavaScript UI
library or integrate with
frameworks like React/Redux
or Angular .
GWT related links
❏ Conference slides
❏ Sources
❏ Some videos:
GWT Meet-up 2015
GWT.create 2015
❏ GWT Project site
Interesting articles:
❏ Build Powerful JavaScript
Front Ends Using Java
❏ What happened in 2015/2016
for GWT ?
❏ Java mobile tech overview

More Related Content

PDF
Vaadin += GWT
PDF
Introducing GWT Polymer (vaadin)
PDF
Rock GWT UI's with Polymer Elements
PDF
Building web apps with Vaadin 8
PDF
Hands on the Gradle
PDF
Vaadin Flow - JavaLand 2018
PDF
Front End Development for Back End Java Developers - NYJavaSIG 2019
PPT
Choosing a Java Web Framework
Vaadin += GWT
Introducing GWT Polymer (vaadin)
Rock GWT UI's with Polymer Elements
Building web apps with Vaadin 8
Hands on the Gradle
Vaadin Flow - JavaLand 2018
Front End Development for Back End Java Developers - NYJavaSIG 2019
Choosing a Java Web Framework

What's hot (20)

PDF
Web components with java by Haijian Wang
PDF
Web Components for Java Developers
PPT
GWT + Gears : The browser is the platform
PPT
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
PDF
Java REST API Framework Comparison - PWX 2021
PDF
Vaadin DevDay 2017 - DI your UI
PDF
Hybrid Apps (Native + Web) via QtWebKit
PDF
Vaadin DevDay 2017 - Web Components
PDF
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019
PDF
A Gentle Introduction to Angular Schematics - Angular SF 2019
PDF
Comparing JVM Web Frameworks - Rich Web Experience 2010
KEY
うさぎ組 in G* WorkShop -うさみみの日常-
PDF
Front End Development for Backend Developers - GIDS 2019
PDF
Vaadin 8 and 10
PPT
Os Johnson
PDF
Bootiful Development with Spring Boot and React - UberConf 2018
PDF
Spark IT 2011 - Java EE 6 Workshop
PDF
Vaadin and Spring at Devoxx UK 2015
PDF
Bootiful Development with Spring Boot and React - SpringOne 2017
PDF
Spark IT 2011 - Developing RESTful Web services with JAX-RS
Web components with java by Haijian Wang
Web Components for Java Developers
GWT + Gears : The browser is the platform
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
Java REST API Framework Comparison - PWX 2021
Vaadin DevDay 2017 - DI your UI
Hybrid Apps (Native + Web) via QtWebKit
Vaadin DevDay 2017 - Web Components
A Gentle Introduction to Angular Schematics - Devoxx Belgium 2019
A Gentle Introduction to Angular Schematics - Angular SF 2019
Comparing JVM Web Frameworks - Rich Web Experience 2010
うさぎ組 in G* WorkShop -うさみみの日常-
Front End Development for Backend Developers - GIDS 2019
Vaadin 8 and 10
Os Johnson
Bootiful Development with Spring Boot and React - UberConf 2018
Spark IT 2011 - Java EE 6 Workshop
Vaadin and Spring at Devoxx UK 2015
Bootiful Development with Spring Boot and React - SpringOne 2017
Spark IT 2011 - Developing RESTful Web services with JAX-RS
Ad

Viewers also liked (12)

PDF
Functional UIs with Java 8 and Vaadin JavaOne2014
PDF
Turducken - Divide and Conquer large GWT apps with multiple teams
PDF
Gwt.Create Keynote San Francisco
PDF
Kotlin Bytecode Generation and Runtime Performance
PPTX
Containers #101 Meetup: Docker Build & Test Flow
PPTX
The Art of Metaprogramming in Java
PDF
Gwt widget frameworks_presentation
PDF
Swift and Kotlin Presentation
PDF
Kotlin: Why Do You Care?
PDF
摩登開發團隊的DevOps之道 (@DevOpsTaiwan)
PPTX
JSON and REST
PDF
IBM DataPower Gateway - Common Use Cases
Functional UIs with Java 8 and Vaadin JavaOne2014
Turducken - Divide and Conquer large GWT apps with multiple teams
Gwt.Create Keynote San Francisco
Kotlin Bytecode Generation and Runtime Performance
Containers #101 Meetup: Docker Build & Test Flow
The Art of Metaprogramming in Java
Gwt widget frameworks_presentation
Swift and Kotlin Presentation
Kotlin: Why Do You Care?
摩登開發團隊的DevOps之道 (@DevOpsTaiwan)
JSON and REST
IBM DataPower Gateway - Common Use Cases
Ad

Similar to GWT Reloaded (20)

PDF
The Java alternative to Javascript
PPTX
Google web toolkit ( Gwt )
PPT
PDF
First steps with GWT @ Google IO Extended - Pordenone
PDF
Present and Future of GWT from a developer perspective
PDF
GWT - AppDays - (25 aprile 2014, pordenone)
PPT
Google Web Toolkit Introduction - eXo Platform SEA
PDF
Gwt kickoff - Alberto Mancini & Francesca Tosi
PPT
G W T(2)
PDF
Javascript as a target language - GWT kickoff - part1/2
PDF
Rapid and Reliable Developing with HTML5 & GWT
PDF
GWT- Google Web Toolkit
PPTX
GWT = easy AJAX
PPTX
Gwt overview & getting started
PPT
GWT Introduction for Eclipse Day
PPT
GWT Training - Session 1/3
PPT
Gwtcreatekeynote
PDF
Javascript as a target language - GWT KickOff - Part 2/2
PPTX
GWT HJUG Presentation
PPTX
Gwt session
The Java alternative to Javascript
Google web toolkit ( Gwt )
First steps with GWT @ Google IO Extended - Pordenone
Present and Future of GWT from a developer perspective
GWT - AppDays - (25 aprile 2014, pordenone)
Google Web Toolkit Introduction - eXo Platform SEA
Gwt kickoff - Alberto Mancini & Francesca Tosi
G W T(2)
Javascript as a target language - GWT kickoff - part1/2
Rapid and Reliable Developing with HTML5 & GWT
GWT- Google Web Toolkit
GWT = easy AJAX
Gwt overview & getting started
GWT Introduction for Eclipse Day
GWT Training - Session 1/3
Gwtcreatekeynote
Javascript as a target language - GWT KickOff - Part 2/2
GWT HJUG Presentation
Gwt session

Recently uploaded (20)

PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Computer Software and OS of computer science of grade 11.pptx
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PDF
17 Powerful Integrations Your Next-Gen MLM Software Needs
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
history of c programming in notes for students .pptx
PDF
Salesforce Agentforce AI Implementation.pdf
PDF
Designing Intelligence for the Shop Floor.pdf
DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PDF
Autodesk AutoCAD Crack Free Download 2025
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Design an Analysis of Algorithms I-SECS-1021-03
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Computer Software and OS of computer science of grade 11.pptx
Advanced SystemCare Ultimate Crack + Portable (2025)
17 Powerful Integrations Your Next-Gen MLM Software Needs
Design an Analysis of Algorithms II-SECS-1021-03
Navsoft: AI-Powered Business Solutions & Custom Software Development
history of c programming in notes for students .pptx
Salesforce Agentforce AI Implementation.pdf
Designing Intelligence for the Shop Floor.pdf
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
Autodesk AutoCAD Crack Free Download 2025
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Adobe Illustrator 28.6 Crack My Vision of Vector Design
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises

GWT Reloaded

  • 1. GWT Reloaded Building complex browser-based applications in Java 8 © 2016 by Marcin Szałomski
  • 2. Topics ❏ What is GWT and who stands behind it? ❏ GWT retrospection (2006-2016) ❏ The Future of GWT ❏ What about the popular JS frameworks? ❏ Why do we still need GWT? ❏ Who and how is using GWT? ❏ How to use GWT? ❏ Errai Framework - Java EE In The Browser. ❏ Useful links
  • 3. Google Web Toolkit? Still Google? It was originally created and developed by Google. Now? Google - member of the GWT Open Source Project. So who’s the boss? (late 2011-...) GWT Steering committee : Google, Vaadin, Sencha, RedHat, Arcbees, Bizo, Jetbrains, Thomas Broyer and Colin Alworth. (to ensure that no particular individual, group or organization can gain control over the project) What’s changed? The project gets better!
  • 4. Java to JavaScript compiler. ❏ open-source, completely free, ❏ the active community, ❏ still developed and maintained ❏ lots of tools and libs around ❏ GWT.create, GWTcon , conferences, ❏ used by thousands of developers around the world, ❏ ... GWT? Development toolkit for building and optimizing complex browser- based applications. Its goal is to enable productive development of high-performance web applications without the developer having to be an expert in browser quirks, XMLHttpRequest, and JavaScript.
  • 5. GWT in the Past ❏ ...was born in Google (2006) ❏ graduated to open source in late 2011 (steering committee) ❏ in 2006 browsers and JavaScript were far from standards (jQuery just announced for the first time!) ❏ almost lack of HQ alternative, ❏ The goal: browsers tricks hidden for developers Ok, but the web has changed over the past decade. We have now a lot of awesome front-end frameworks like: Angular, Polymer or React. Do we still need GWT?
  • 7. Why do we still need GWT? [1 of 2] JavaScript became lingua franca of front-end applications. But developers need better tools. OK, we have: ES6+, CoffeeScript, TypeScript, JSweet, Dart, … Developers need stronger typing! Weakly typed language may produce unpredictable results! Future of JavaScript? ❏ There was JavaScript in 1996, ❏ There was JavaScript in 2006 ❏ There is JavaScript in 2016 ❏ … who knows… ❏ ...the future? WebAssembly? GWT alternative? Kotlin.js , Scala.js , Ceylon and more … even other tools for Java. such as the importance of the JavaScript has grown each year
  • 8. Why do we need stronger typing? Is JavaScript so bad? What about the EcmaScript 6 or TypeScript? ES6 doesn’t support for types. TypeScript offers support for types, but doesn’t support strong type system. Strong typing guarantees your code is free of silly mistakes. No more mixing up strings or numbers, forgetting what keys an object has, or worrying about typos in your method names. It also provides easy and reliable refactoring and reliable code completion. * - This nice explanation has been taken from the Scala.JS site.
  • 9. Why do we still need GWT? [2 of 2] Principles: DRY and DIE! Reuse, reuse, reuse, ...! Cross-platform approach. One Java code base, various platforms. … mobile web, native targets like mobile devices … and perhaps even the IOT... To reuse even Java Backend code … ...JAVA, JAVA, ... ...for native consider also: Titanium4J (GWT), Intel Multi-OS Engine or Codename One... Reuse: business logic, model, validation, etc. Titanium4J or Codename One helps you even with the UI.
  • 10. More tech: ❏ JSInterop: @JSType and @JSProperty instead of JSNI or JSO, ❏ Super Dev Mode (edit-refresh), ❏ GSS Support , ❏ J2CL (Java-to-CLosure aka Jackal) - Closure Compiler , ❏ Elemental 2.0, … GWT in the Future // GWT 3.0 Simple summary: ❏ 2.8.0 beta already available, ❏ 3.0 in development, What has changed: ❏ reinvented interoperability with JavaScript, ❏ new improved compiler, ❏ Java 8 support! For more please see this: presentation and the article .
  • 11. Additional references: GWT and Java 8 GWT 2.8 allows us to enjoy Java 8. Further benefits are eg. FRP (Reactive). Actually it's nothing new, but lot of projects stucked in the previous GWT version. The reason to switch? Please see this presentation (starting from slide #20). One of the key features - lambda expressions: Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand() { @Override public void execute() { $(image).css("display", "block"); } }); Scheduler.get().scheduleDeferred(() -> $(image).css("display", "block")); JAVA 7 JAVA 8
  • 12. Who is using GWT? GWT is used by many products at Google, including: AdWords, AdSense, Flights, Hotel Finder, Offers, Wallet, Blogger, Google Sheets, Parts of Maps and Google Inbox (May 28, 2015 - officially opened).
  • 13. One App, Many Platforms Java code reused ➤ Inbox Web uses GWT JsInterop ➤ Inbox iOS uses J2ObjC
  • 14. Recently Google announced that has rewritten the AdWords UI using Dart . So what does it mean for GWT? I’ve compared both after reading the interview with primary technical lead: Explained with the details here . [x] Dart [x] GWT transpiles well to Javascript [_] Dart [x] GWT switch tech stacks easily [_] Dart [x] GWT stronger type checking [_] Dart [x] GWT fast edit refresh [x] Dart [x] GWT new js interop [x] Dart [x] GWT being terse [x] Dart [x] GWT frameworks available [_] Dart [x] GWT native apps What about the AdWords?
  • 15. Who else is using GWT? Please find “The Future of GWT Report 2015” here . Mostly for large-scale web applications like: ❏ Internal and External business applications, ❏ Content-rich websites… Why? ❏ maintainability of the code is important
  • 16. How to use GWT? Presentation - building Polymer Elements powered app with Vaadin Framework: . Presentation introducing Errai Framework . Btw. it’s worth mentioning that GWT can be also used to create non browser based apps using Node.js, since it’s Java to JS compiler. Errai Framework? ❏ building full-stack web apps, ❏ type-safe and declarative, ❏ “It's better to have less code that clearly expresses intent” ❏ convention over configuration, ❏ Share code between the client and the server, ❏ DRY: Reuse your data model, validation and business logic,... boilerplate is bad
  • 17. Errai Framework ❏ Client-side dependency injection (consistent with CDI) ❏ Client-side templating ❏ 2-way data-binding ❏ Dynamic runtime module support (using JsInterop) ❏ qualifier annotations to determine what dependencies a bean satisfies, ❏ Constructor field and setter injections, ❏ More CDI and EJB features: @Alternative, @Specializes, @Produces, scopes, CDI Events, JPA, ... ❏ injecting native JavaScript objects into IoC beans with JS interop, ❏ Support for native DOM-based UI, ❏ Support for GWT 2.8 + Java 8. … loose coupling, easy reuse, …
  • 18. Errai - how to cook with it (Errai UI example) ❏ bind Java class elements to elements in an HTML template, ❏ template files can be HTML fragments or full pages, ❏ the HTML file is the template, ❏ the Java class is a templated bean. ❏ data fields can be @Bound to the model and automatically updated. MyForm.html
  • 19. Errai - Data Binding The name and dob fields are @Bound They are kept in sync by binder. This class is @Bindable with two properties Going the other direction
  • 20. More Errai examples? Presentation introducing Errai Framework . Getting started Reference Please watch this 6 minutes movie showing Errai in action (TODO List app creating). (referers to the quite old Errai version but it’s still worth watching)
  • 21. GWTP (video), Tessell (video), MVP4G, and more … How about the UI? GWT Polymer (tutor, showcase), Vaadin (demo), Sencha GXT (doc), native apps in Titanium4J (videos) GWTMaterialDesign (demo #1, demo #2, demo #3, demo #4), Smart GWT (showcase), GwtBootstrap3 (demo), jqm4gwt (jQuery Mobile showcase), ... What if not Errai? GWT 3 way of using UI. Widgets will be depreciated. Using the new JSInterop and Elemental it should be now possible to simply use any 3rd party JavaScript UI library or integrate with frameworks like React/Redux or Angular .
  • 22. GWT related links ❏ Conference slides ❏ Sources ❏ Some videos: GWT Meet-up 2015 GWT.create 2015 ❏ GWT Project site Interesting articles: ❏ Build Powerful JavaScript Front Ends Using Java ❏ What happened in 2015/2016 for GWT ? ❏ Java mobile tech overview