SlideShare a Scribd company logo
Less JS!
for backend developers
About me
Olga Semeniuk,
Java developer
https://plus.google.com/+OlgaKorichkovskaya
Agenda
● Web components
● Polymer
● JSF: PrimeFaces
JEE Conf 2015: Less JS!
Goals:
● Reducing amount of code
● Readability
● Composability (being able to create whole
sites and apps by putting different elements
together)
Web Components
set standards from Google
WebComponents.org
Goals:
● Build widgets
● …which can be reused reliably
● …and which won’t break pages if the next
version of the component changes
internal implementation details
Web Components: aims
● Simplification
● Reusability
● Robustness
2008 - W3C start working on spec
...
2013 - Working draft is published
2014 - Polymer presentation on Google I/O
2015, May - Polymer 0.9 released
Timeline
Bower
● A package manager for the web
● Search for dependencies and install
them as packages
● Created by Twitter
● Open Source
www.bower.io
Bower
$ npm install -g bower
www.bower.io
$ bower init
$ bower install --save webcomponentsjs
Web Components
Shadow DOM
HTML Imports
HTML Templates
Custom Elements
Shadow DOM
Method of combining multiple DOM trees
into one hierarchy and
how these trees interact with each other
within a document
Shadow DOM: benefits
● Encapsulate content by creating
document fragments.
● Separate content from presentation
thereby eliminating naming conflicts and
improving code expression
Shadow DOM:
hide presentation Details
Shadow DOM:
separating content from presentation
25+,
Android 41+ None None None 4.4+ 15+
Browser support
Polyfills
webcomponents.js is a set of polyfills built on
top of the Web Components specifications,
enable Web Components in browsers that lack
native support
It makes it possible for developers to use
these standards today
HTML Imports
Imports let include and reuse HTML docs in
other HTML docs.
for html <link rel="import" href="..">
We have <script src>, <link rel="stylesheet">,
<img>, <video>, <audio>...
HTML Imports
The URL is called an import location. To load content from
another domain, the import location needs to be CORS-enabled
HTML Imports: benefits
● Decomposition
● Combining several resources (JS,
CSS, ..) in one
● Reuse
Browser support
36+,
Android 41+
None None None 40+ 23+
Custom Elements
“Everything is an element” philosophy:
web app becomes a collection of well-
defined, reusable components.
Custom Elements
Define own element types with custom tag
names.
As with any element, element can also be
created in JavaScript.
Custom Elements
Define own Polymer element
Custom Elements
Types of elements:
● UI elements, which render UI to the
screen.
● Non-UI elements, which provide
other utilities.
Custom Elements: benefits
● Reduce the amount of code
● Express the function of the code
● Encapsulation, inheritance
Browser support
33+,
Android
41+
None 22+ 7.1+,
iOS Safari 8+
Android
Browser
4.4.4+
20+
Web Components
● Increase productivity
● Declarative
● Composability
● Implement APIs per element type
Polymer
Library built with some extra sugar, provides
a declarative syntax for defining custom
elements, special features including
● two-way data binding,
● declarative event handling,
● declarative inheritance
● property observation
Created & supported by Google
Polymer
Polymer elements
Core-elements are a set of visual and non-visual
utility elements for working with layout, user input,
selection, and scaffolding apps.
Polymer's paper collection implements
material design, highly visual, highly interactive
elements that include things like controls,
layouts, hero transitions, and scrolling effects.
JEE Conf 2015: Less JS!
JEE Conf 2015: Less JS!
Material design
● Material is the metaphor
● Bold, graphic, intentional
● Motion provides meaning
“Visual language that synthesizes the classic
principles of good design with the innovation and
possibility of technology and science.” © Google
Principles:
http://google.com/design/spec/material-design
● Browser integrated: declarative event
handlers, mutation observers, query selector
● Interoperability - every framework is
compatible with DOM
Polymer : pros
● Write script in a scripting language, write
styles in a styling language, write markup in a
markup language.
● DevTools support
● Browser support
● Not production ready, so far
● Client side technology - many similar
things to JS - frameworks, such
experience is very helpful
Polymer : cons
JSF: PrimeFaces
primefaces.org
PrimeFaces
● Component library for JavaServer Faces
(JSF) based applications
● Standard part of the Java EE stack, so
you can’t do anything wrong
● The most popular JSF framework
Who uses PrimeFaces?
PrimeFaces: 100+ UI Components
Themes
Hide Complexity
JS CSS JSON AJAX
Keep Flexibility
JS API CSS
Override
Client
Callbacks
Ajax
Callbacks
Templates
JSF 2 Templating with Facelets
ui:insert
ui:define
ui:include
ui:composition
PrimeFaces Selectors
An alternative, flexible, grouping based approach to
reference components to partially process and update.
update=”@(form)”
update=”@(form.first)”
update=”@(.mystyle)”
update=”@(.ui-datatable)”
update=”@(:input:not(select))”
update=”@(:input:disabled))”
Custom Elements
PrimeFaces contains API to build custom
components.
But custom components is often difficult to
maintain.
Pros
● Mature and cross browser compatible
● Very large and helpful community
● Easy to understand even for novice team
members
and cons
● Tightly coupled: Layout, Design, Logic,
Communication with the server
● Need some time to make components
look right together
● Easy to make mistakes related to a
misunderstanding of the request-
response lifecycle
and cons
● Not suitable for heavily consumer oriented
website
● Final HTML page is generated from
pseudo-html (xhtml)
● and resulting HTML is often atrocious
● Generation take time
● JSF concept is outdated
Polymer vs PrimeFaces
● Future, based on modern
web technology
● Client side framework
● Requery strong knowledge in
JavaScript and CSS
● Specification is in progress
● Looks modern, easy build
single page application
● Past, part of Java EE
● Server side framework
Java based, but JavaScript,
CSS is very useful
● A lot of documentation,
books, strong community
● Looks more modest, but
has attractive paid theme
Polymer and PrimeFaces
● Powerful frameworks to simplify writing code for
the UI
● Contains set of ready components with styles
● Allow to create own components
● Keep page templating
● Have own search in DOM
● Encapsulate complexity
● Responsive Design
● Extendable
Polymer demo
1. Project skeleton (Spring-Boot, index.html)
2. Add Polymer, core-, paper-elements
3. Create component
4. - add data
5. - style
6. Style for welcome page
7. Add paper-input, paper-button and core-ajax
8. Backend service
PrimeFaces demo
1. Generate project skeleton from archetype (https:
//github.com/bprager/spring-boot-primefaces)
2. Welcome page layout
3. Add polymer components
4. Add interaction with Spring Been
Links
● Web Components WebComponents.org
● Polymer polymer-project.org
● Material-design http://www.google.
com/design/spec/material-design/
● PrimeFaces primefaces.org
● SpringBoot/PrimeFaces Maven-Archetype https://github.
com/bprager/spring-boot-primefaces
● Slides
<questions></questions>
Thanks!

More Related Content

PPTX
Web application I have always dreamt of
PPT
Spring Boot. Boot up your development. JEEConf 2015
ODP
Spring cloud for microservices architecture
PPTX
Intro to spring cloud &microservices by Eugene Hanikblum
PDF
angular-wakanda ngParis meetup 15 at 42
PDF
From Web App Model Design to Production with Wakanda
PDF
End to-end W3C - JS.everywhere(2012) Europe
PDF
Conquer Architectural Challenges with End-to-End JavaScript - enterJS 2014
Web application I have always dreamt of
Spring Boot. Boot up your development. JEEConf 2015
Spring cloud for microservices architecture
Intro to spring cloud &microservices by Eugene Hanikblum
angular-wakanda ngParis meetup 15 at 42
From Web App Model Design to Production with Wakanda
End to-end W3C - JS.everywhere(2012) Europe
Conquer Architectural Challenges with End-to-End JavaScript - enterJS 2014

What's hot (20)

PPTX
001. Introduction about React
PPTX
Full Stack Development With Node.Js And NoSQL (Nic Raboy & Arun Gupta)
PDF
Best Practices with WSO2 Developer Studio
PDF
Microservices with Spring
PPTX
JavaFX and HTML5 - Like Curds and Rice
PDF
Michael North "Ember.js 2 - Future-friendly ambitious apps, that scale!"
PDF
Devoxx : being productive with JHipster
PPTX
ASP.NET 5 Overview
PDF
Introduction to WSO2 Developer Studio
PDF
Moving to the Client - JavaFX and HTML5
PPTX
An Unexpected Solution to Microservices UI Composition
PDF
Micronaut Deep Dive - Codeone 2019
PDF
React native: building native iOS apps with javascript
PPTX
Decoupled Architecture and WordPress
PDF
Angular meetup 2 2019-08-29
PDF
Introduction to Micronaut - JBCNConf 2019
PPT
O que é esse tal de OWIN?
PPTX
Moving to the Client - JavaFX and HTML5
PDF
WSO2Con USA 2015: End-to-end Microservice Architecture with WSO2 Identity Ser...
PPTX
React JS Belgium Touch Base - React, Flux, React Native
001. Introduction about React
Full Stack Development With Node.Js And NoSQL (Nic Raboy & Arun Gupta)
Best Practices with WSO2 Developer Studio
Microservices with Spring
JavaFX and HTML5 - Like Curds and Rice
Michael North "Ember.js 2 - Future-friendly ambitious apps, that scale!"
Devoxx : being productive with JHipster
ASP.NET 5 Overview
Introduction to WSO2 Developer Studio
Moving to the Client - JavaFX and HTML5
An Unexpected Solution to Microservices UI Composition
Micronaut Deep Dive - Codeone 2019
React native: building native iOS apps with javascript
Decoupled Architecture and WordPress
Angular meetup 2 2019-08-29
Introduction to Micronaut - JBCNConf 2019
O que é esse tal de OWIN?
Moving to the Client - JavaFX and HTML5
WSO2Con USA 2015: End-to-end Microservice Architecture with WSO2 Identity Ser...
React JS Belgium Touch Base - React, Flux, React Native
Ad

Viewers also liked (8)

PDF
BIG DATA: From mammoth to elephant
ODP
PDF
Generics Past, Present and Future
PDF
Statis code analysis
PDF
Spring data jee conf
PDF
Scala Rock-Painting
PPTX
Do we need JMS in 21st century?
BIG DATA: From mammoth to elephant
Generics Past, Present and Future
Statis code analysis
Spring data jee conf
Scala Rock-Painting
Do we need JMS in 21st century?
Ad

Similar to JEE Conf 2015: Less JS! (20)

PPTX
Web component
PDF
What's new in Portal and WCM 8.5
PPTX
Building reusable components as micro frontends with glimmer js and webcompo...
PDF
React fristy day learn basic NM_Day01.pdf
PPTX
Oracle JavaScript Extension Toolkit Web Components Bring Agility to App Devel...
PDF
Web components are the future of the web - Take advantage of new web technolo...
PDF
PDF
IRJET- Polymer Javascript
PDF
JIO and WebViewers: interoperability for Javascript and Web Applications
PDF
Liferay UG Meetup #8 - Portal 7.3 + portlets com nodeJS - 2020-03-04
PDF
Web App Prototypes with Google App Engine
PPTX
Angular elements - embed your angular components EVERYWHERE
PPTX
Reason to choose Angular JS for your Web Application
PDF
Mozilla Add-Ons Evolution 2011 in review and Upcoming in 2012
PDF
DOC
KATHY ZHANG_3
PPTX
Angular patterns
PPTX
Web Components the best marriage for a PWA
PDF
"Top Digital Marketing Services to Boost Your Business Growth"
ODP
Contributions: what they are and how to find them
Web component
What's new in Portal and WCM 8.5
Building reusable components as micro frontends with glimmer js and webcompo...
React fristy day learn basic NM_Day01.pdf
Oracle JavaScript Extension Toolkit Web Components Bring Agility to App Devel...
Web components are the future of the web - Take advantage of new web technolo...
IRJET- Polymer Javascript
JIO and WebViewers: interoperability for Javascript and Web Applications
Liferay UG Meetup #8 - Portal 7.3 + portlets com nodeJS - 2020-03-04
Web App Prototypes with Google App Engine
Angular elements - embed your angular components EVERYWHERE
Reason to choose Angular JS for your Web Application
Mozilla Add-Ons Evolution 2011 in review and Upcoming in 2012
KATHY ZHANG_3
Angular patterns
Web Components the best marriage for a PWA
"Top Digital Marketing Services to Boost Your Business Growth"
Contributions: what they are and how to find them

Recently uploaded (20)

DOCX
ENGLISH PROJECT FOR BINOD BIHARI MAHTO KOYLANCHAL UNIVERSITY
PPTX
Tablets And Capsule Preformulation Of Paracetamol
PDF
Swiggy’s Playbook: UX, Logistics & Monetization
PPTX
2025-08-10 Joseph 02 (shared slides).pptx
PDF
Instagram's Product Secrets Unveiled with this PPT
PPTX
Self management and self evaluation presentation
PPTX
Effective_Handling_Information_Presentation.pptx
PPTX
An Unlikely Response 08 10 2025.pptx
PPTX
The spiral of silence is a theory in communication and political science that...
PPTX
Intro to ISO 9001 2015.pptx wareness raising
PPTX
Hydrogel Based delivery Cancer Treatment
PDF
Why Top Brands Trust Enuncia Global for Language Solutions.pdf
PPTX
worship songs, in any order, compilation
PPTX
Introduction to Effective Communication.pptx
PPTX
Emphasizing It's Not The End 08 06 2025.pptx
PPTX
Human Mind & its character Characteristics
PPTX
Role and Responsibilities of Bangladesh Coast Guard Base, Mongla Challenges
PPTX
Presentation for DGJV QMS (PQP)_12.03.2025.pptx
PPTX
INTERNATIONAL LABOUR ORAGNISATION PPT ON SOCIAL SCIENCE
PDF
Parts of Speech Prepositions Presentation in Colorful Cute Style_20250724_230...
ENGLISH PROJECT FOR BINOD BIHARI MAHTO KOYLANCHAL UNIVERSITY
Tablets And Capsule Preformulation Of Paracetamol
Swiggy’s Playbook: UX, Logistics & Monetization
2025-08-10 Joseph 02 (shared slides).pptx
Instagram's Product Secrets Unveiled with this PPT
Self management and self evaluation presentation
Effective_Handling_Information_Presentation.pptx
An Unlikely Response 08 10 2025.pptx
The spiral of silence is a theory in communication and political science that...
Intro to ISO 9001 2015.pptx wareness raising
Hydrogel Based delivery Cancer Treatment
Why Top Brands Trust Enuncia Global for Language Solutions.pdf
worship songs, in any order, compilation
Introduction to Effective Communication.pptx
Emphasizing It's Not The End 08 06 2025.pptx
Human Mind & its character Characteristics
Role and Responsibilities of Bangladesh Coast Guard Base, Mongla Challenges
Presentation for DGJV QMS (PQP)_12.03.2025.pptx
INTERNATIONAL LABOUR ORAGNISATION PPT ON SOCIAL SCIENCE
Parts of Speech Prepositions Presentation in Colorful Cute Style_20250724_230...

JEE Conf 2015: Less JS!

  • 1. Less JS! for backend developers
  • 2. About me Olga Semeniuk, Java developer https://plus.google.com/+OlgaKorichkovskaya
  • 3. Agenda ● Web components ● Polymer ● JSF: PrimeFaces
  • 5. Goals: ● Reducing amount of code ● Readability ● Composability (being able to create whole sites and apps by putting different elements together)
  • 6. Web Components set standards from Google WebComponents.org
  • 7. Goals: ● Build widgets ● …which can be reused reliably ● …and which won’t break pages if the next version of the component changes internal implementation details
  • 8. Web Components: aims ● Simplification ● Reusability ● Robustness
  • 9. 2008 - W3C start working on spec ... 2013 - Working draft is published 2014 - Polymer presentation on Google I/O 2015, May - Polymer 0.9 released Timeline
  • 10. Bower ● A package manager for the web ● Search for dependencies and install them as packages ● Created by Twitter ● Open Source www.bower.io
  • 11. Bower $ npm install -g bower www.bower.io $ bower init $ bower install --save webcomponentsjs
  • 12. Web Components Shadow DOM HTML Imports HTML Templates Custom Elements
  • 13. Shadow DOM Method of combining multiple DOM trees into one hierarchy and how these trees interact with each other within a document
  • 14. Shadow DOM: benefits ● Encapsulate content by creating document fragments. ● Separate content from presentation thereby eliminating naming conflicts and improving code expression
  • 16. Shadow DOM: separating content from presentation
  • 17. 25+, Android 41+ None None None 4.4+ 15+ Browser support
  • 18. Polyfills webcomponents.js is a set of polyfills built on top of the Web Components specifications, enable Web Components in browsers that lack native support It makes it possible for developers to use these standards today
  • 19. HTML Imports Imports let include and reuse HTML docs in other HTML docs. for html <link rel="import" href=".."> We have <script src>, <link rel="stylesheet">, <img>, <video>, <audio>...
  • 20. HTML Imports The URL is called an import location. To load content from another domain, the import location needs to be CORS-enabled
  • 21. HTML Imports: benefits ● Decomposition ● Combining several resources (JS, CSS, ..) in one ● Reuse
  • 23. Custom Elements “Everything is an element” philosophy: web app becomes a collection of well- defined, reusable components.
  • 24. Custom Elements Define own element types with custom tag names. As with any element, element can also be created in JavaScript.
  • 25. Custom Elements Define own Polymer element
  • 26. Custom Elements Types of elements: ● UI elements, which render UI to the screen. ● Non-UI elements, which provide other utilities.
  • 27. Custom Elements: benefits ● Reduce the amount of code ● Express the function of the code ● Encapsulation, inheritance
  • 28. Browser support 33+, Android 41+ None 22+ 7.1+, iOS Safari 8+ Android Browser 4.4.4+ 20+
  • 29. Web Components ● Increase productivity ● Declarative ● Composability ● Implement APIs per element type
  • 30. Polymer Library built with some extra sugar, provides a declarative syntax for defining custom elements, special features including ● two-way data binding, ● declarative event handling, ● declarative inheritance ● property observation
  • 31. Created & supported by Google Polymer
  • 32. Polymer elements Core-elements are a set of visual and non-visual utility elements for working with layout, user input, selection, and scaffolding apps. Polymer's paper collection implements material design, highly visual, highly interactive elements that include things like controls, layouts, hero transitions, and scrolling effects.
  • 35. Material design ● Material is the metaphor ● Bold, graphic, intentional ● Motion provides meaning “Visual language that synthesizes the classic principles of good design with the innovation and possibility of technology and science.” © Google Principles: http://google.com/design/spec/material-design
  • 36. ● Browser integrated: declarative event handlers, mutation observers, query selector ● Interoperability - every framework is compatible with DOM Polymer : pros ● Write script in a scripting language, write styles in a styling language, write markup in a markup language. ● DevTools support
  • 37. ● Browser support ● Not production ready, so far ● Client side technology - many similar things to JS - frameworks, such experience is very helpful Polymer : cons
  • 39. PrimeFaces ● Component library for JavaServer Faces (JSF) based applications ● Standard part of the Java EE stack, so you can’t do anything wrong ● The most popular JSF framework
  • 41. PrimeFaces: 100+ UI Components
  • 43. Hide Complexity JS CSS JSON AJAX Keep Flexibility JS API CSS Override Client Callbacks Ajax Callbacks
  • 44. Templates JSF 2 Templating with Facelets ui:insert ui:define ui:include ui:composition
  • 45. PrimeFaces Selectors An alternative, flexible, grouping based approach to reference components to partially process and update. update=”@(form)” update=”@(form.first)” update=”@(.mystyle)” update=”@(.ui-datatable)” update=”@(:input:not(select))” update=”@(:input:disabled))”
  • 46. Custom Elements PrimeFaces contains API to build custom components. But custom components is often difficult to maintain.
  • 47. Pros ● Mature and cross browser compatible ● Very large and helpful community ● Easy to understand even for novice team members
  • 48. and cons ● Tightly coupled: Layout, Design, Logic, Communication with the server ● Need some time to make components look right together ● Easy to make mistakes related to a misunderstanding of the request- response lifecycle
  • 49. and cons ● Not suitable for heavily consumer oriented website ● Final HTML page is generated from pseudo-html (xhtml) ● and resulting HTML is often atrocious ● Generation take time ● JSF concept is outdated
  • 50. Polymer vs PrimeFaces ● Future, based on modern web technology ● Client side framework ● Requery strong knowledge in JavaScript and CSS ● Specification is in progress ● Looks modern, easy build single page application ● Past, part of Java EE ● Server side framework Java based, but JavaScript, CSS is very useful ● A lot of documentation, books, strong community ● Looks more modest, but has attractive paid theme
  • 51. Polymer and PrimeFaces ● Powerful frameworks to simplify writing code for the UI ● Contains set of ready components with styles ● Allow to create own components ● Keep page templating ● Have own search in DOM ● Encapsulate complexity ● Responsive Design ● Extendable
  • 52. Polymer demo 1. Project skeleton (Spring-Boot, index.html) 2. Add Polymer, core-, paper-elements 3. Create component 4. - add data 5. - style 6. Style for welcome page 7. Add paper-input, paper-button and core-ajax 8. Backend service
  • 53. PrimeFaces demo 1. Generate project skeleton from archetype (https: //github.com/bprager/spring-boot-primefaces) 2. Welcome page layout 3. Add polymer components 4. Add interaction with Spring Been
  • 54. Links ● Web Components WebComponents.org ● Polymer polymer-project.org ● Material-design http://www.google. com/design/spec/material-design/ ● PrimeFaces primefaces.org ● SpringBoot/PrimeFaces Maven-Archetype https://github. com/bprager/spring-boot-primefaces ● Slides