Unlocking the Java EE Platform with HTML 5

Similar documents
Differences between HTML and HTML 5

Research on HTML5 in Web Development

CLASSROOM WEB DESIGNING COURSE

Web Design Specialist

Introduction to Tizen SDK Alpha. Taiho Choi Samsung Electronics

Outline. CIW Web Design Specialist. Course Content

Performance Testing for Ajax Applications

HTML5 & CSS3. ( What about SharePoint? ) presented

IBM Script Portlet for WebSphere Portal Release 1.1

Mobile Web Design with HTML5, CSS3, JavaScript and JQuery Mobile Training BSP-2256 Length: 5 days Price: $ 2,895.00

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Programming in HTML5 with JavaScript and CSS3

Portals and Hosted Files

Visualizing a Neo4j Graph Database with KeyLines

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

HTML5 technologies. Ework Stockholm

HTML5 & Friends. And How They Change A Developer s Life

RIA Technologies Comparison

Debugging JavaScript and CSS Using Firebug. Harman Goei CSCI 571 1/27/13

Web Browser. Fetches/displays documents from web servers. Mosaic 1993

ORACLE APPLICATION EXPRESS 5.0

Rich Internet Applications

Upgrade to Microsoft Web Applications

ACE: Dreamweaver CC Exam Guide

Web Designing with UI Designing

5.1 Features Denver CO 80202

An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0

Developing ASP.NET MVC 4 Web Applications MOC 20486

MASTERTAG DEVELOPER GUIDE

Web Development with the Eclipse Platform

Eclipse Web Tools Platform. Naci Dai (Eteration), WTP JST Lead

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE

jquery Tutorial for Beginners: Nothing But the Goods

Web Development I & II*

FUNCTIONAL OVERVIEW VERSION: 1.0

Client-side Web Engineering From HTML to AJAX

Building Web Applications

Google Web Toolkit. Introduction to GWT Development. Ilkka Rinne & Sampo Savolainen / Spatineo Oy

Going Beyond SAP ITS Mobile Apps to a Responsive Design Mobile Apps. JK (JayaKumar Pedapudi) Principal Consultant NTT DATA, Inc.

10CS73:Web Programming

WEB DESIGN COURSE CONTENT

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1

Building Web Applications with HTML5, CSS3, and Javascript: An Introduction to HTML5

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Application Note. Building a Website Using Dreamweaver without Programming. Nan Xia. MSU ECE 480 Team 5

HTML5 Features on Tizen. Wonsuk Lee, Samsung Electronics

MAGENTO THEME SHOE STORE

Modern Web Development From Angle Brackets to Web Sockets

Visualizing an OrientDB Graph Database with KeyLines

HTML5 & CSS3. Jens Jäger Freiberuflicher Softwareentwickler JavaEE, Ruby on Rails, Webstuff Blog: Mail: mail@jensjaeger.

<Insert Picture Here>

THE SAS OUTPUT DELIVERY SYSTEM: BOLDLY TAKE YOUR WEB PAGES WHERE THEY HAVE NEVER GONE BEFORE! CHEVELL PARKER, SAS INSTITUTE INC.

Software Requirements Specification For Real Estate Web Site

Developing ASP.NET MVC 4 Web Applications

SPELL Tabs Evaluation Version

Adding Panoramas to Google Maps Using Ajax

HTML TIPS FOR DESIGNING

Introducing our new Editor: Creator

Generating Open For Business Reports with the BIRT RCP Designer

How to Monitor and Identify Website Issues. 2013, SolarWinds Worldwide, LLC. All rights reserved. Share:

Fireworks CS4 Tutorial Part 1: Intro

Orion: Software Development in the Browser

IE Class Web Design Curriculum

Responsive Web Design Creative License

Web Testing. Main Concepts of Web Testing. Software Quality Assurance Telerik Software Academy

Macromedia Dreamweaver 8 Developer Certification Examination Specification

This document will describe how you can create your own, fully responsive. drag and drop template to use in the creator.

JavaScript By: A. Mousavi & P. Broomhead SERG, School of Engineering Design, Brunel University, UK

Apple Applications > Safari

Dreamweaver and Fireworks MX Integration Brian Hogan

maximizing IT productivity

Sitecore InDesign Connector 1.1

Coding for Desktop and Mobile with HTML5 and Java EE 7

STATEMENT OF PURPOSE

Dreamweaver Tutorial - Dreamweaver Interface

WIRIS quizzes web services Getting started with PHP and Java

Customising Your Mobile Payment Pages

WP Popup Magic User Guide

WHAT'S NEW IN SHAREPOINT 2013 WEB CONTENT MANAGEMENT

WEB DEVELOPMENT COURSE (PHP/ MYSQL)

Interactive Data Visualization for the Web Scott Murray

TUTORIAL 4 Building a Navigation Bar with Fireworks

Adding Links to Resources

A set-up guide and general information to help you get the most out of your new theme.

Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led

Collaborative Open Market to Place Objects at your Service

Mashing Up with Google Mashup Editor and Yahoo! Pipes

Lucy Zhang UI Developer Contact:

IBM Digital Experience. Using Modern Web Development Tools and Technology with IBM Digital Experience

Slide.Show Quick Start Guide

Please select one of the topics below.

The Oracle Fusion Development Platform

Firefox for Android. Reviewer s Guide. Contact us: press@mozilla.com

Editing the Web Template Files

Transcription:

1

2 Unlocking the Java EE Platform with HTML 5

Unlocking the Java EE Platform with HTML 5 Overview HTML5 has suddenly become a hot item, even in the Java ecosystem. How do the 'old' technologies of HTML, JavaScript, and CSS relate to Java developers and can Java developers really be productive in this new/old world? In this session, you'll learn everything you need to know and see demos illustrating the relevance of HTML5 in the Java world, using simple and intuitive tools that have been especially created for this purpose! 3

Agenda What's HTML5? How to be productive with HTML5? What tools are out there? How does this relate to me as a Java developer? What tools are out there to help Java developers with HTML5? 4

What's HTML5? Buzz word Buzz word for rich client-side development Real pure next generation HTML JavaScript and/or CSS mashed together with HTML 5

What's HTML5? Web pages no longer need to look like web pages Web pages no longer need to represent single business content Web pages no longer need to be provided on a single device 6

What's New in HTML5? 7 New parsing rules: oriented towards flexible parsing and compatibility; not based on SGML Ability to use inline SVG and MathML in text/html New elements: article, aside, audio, bdi, canvas, command, data, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, mark, meter, nav, output, progress, rp, rt, ruby, section, source, summary, time, track, video, wbr New types of form controls: dates and times, email, url, search, number, range, tel, color[56] New attributes: charset (on meta), async (on script) Global attributes (that can be applied for every element): id, tabindex, hidden, data-* (custom data attributes) Deprecated elements will be dropped altogether: acronym, applet, basefont, big, center, dir, font, frame, frameset, isindex, noframes, strike, tt

What's New in HTML5? <video src="movie.webm" poster="movie.jpg" controls> This is fallback content to display if the browser does not support the video element. </video> <canvas id="example" width="200" height="200"> This text is displayed if your browser does not support HTML5 Canvas. </canvas> 8 var example = document.getelementbyid('example'); var context = example.getcontext('2d'); context.fillstyle = 'red'; context.fillrect(30, 30, 50, 50);

How to be Productive with HTML5? Browser-based editors Aloha Editor (http://www.aloha-editor.org) Teamlab Document Editor (http://html5.teamlab.com) Maqetta (http://maqetta.org) Raptor Editor (http://www.raptor-editor.com) Desktop editors DreamWeaver (http://www.adobe.com/products/dreamweaver.html) Blue Griffon (http://bluegriffon.org) MacFlux (http://www.macwareinc.com/products/macflux/overview.html) Code Lobster (http://www.codelobster.com) 9

And What About CSS? And JavaScript? Stylizer (http://www.stylizerapp.com) Rapid CSS (http://www.rapidcsseditor.com) Style Master (http://westciv.com/style_master/index.html) Xyle Scope (http://culturedcode.com/xyle/index.html) 10 Top Style (http://svanas.dynip.com/topstyle/index.html)

What About Integrated Tools? Edit HTML, CSS, and JavaScript in a single environment Interact easily and intuitive between different languages and files Interact with the browser click in browser and see where and how DOM nodes are defined click in elements, tags, and CSS, and see where rendered in browser 11

HTML5 Rich Client Development Accelerated HTML5 Development Live Web Preview and Responsive Web Design Rewritten JavaScript Editor on Nashorn JavaScript Debugger CSS3 Editor, Style Editor, and Rule Editor Backbone.js Client Generation from Existing RESTful Web Service Project 12

Accelerated HTML5 Development Create applications from popular templates Open existing HTML5 applications Open applications from ZIP file Use popular tutorial samples New JavaScript Library Manager 13

Live Preview & Responsive Design Deep integration with WebKit API Integration with embedded browser Instant feedback from page design Select in browser, see related code in IDE, and reverse without needing to save Multiple form factors, e.g., desktop or mobile, in browser 14

JavaScript Debugger HTML5 applications are automatically in debug mode Set breakpoints in JavaScript file, on Line, DOM, Event, or XMLHTTPRequest Refresh the browser and immediately you can step through code Use Debugger windows to monitor watches, threads, and breakpoints 15

CSS3 Editors Inspect and edit CSS from CSS Styles window Inspect styles applied to HTML elements in Navigator window Change in CSS Editor is immediately reflected in the browser 16

JavaScript Editor on Nashorn Early build of Nashorn used for parsing Syntax coloring, code completion, pattern recognition, jquery, and JSON JavaScript refactoring Many customization settings in Options window 17

How does this relate to me as a Java developer? Now you have choice either use Java EE or other Java-oriented frontends or HTML But how to integrate HTML frontends with Java backends? RESTful Java web services provide entry points into Java backends 18

Best of both worlds Java EE Platform JPA: standardized mechanism for accessing data EJB: standardized mechanism for coding business logic JAX-RS: standardized mechanism for exposing data HTML5 Platform HTML/JavaScript/CSS: front-end that connects to Java EE via JAX-RS 19

What tools are out there to help Java developers with HTML5? Create or open an HTML5 application Create a Backbone.js frontend from RESTful web services JavaScript file with HTML file is generated and can immediately be opened in the browser 20 In summary: You can expose a database in an HTML5 application within 5 minutes

Conclusion HTML5 is out there and growing in popularity Figuring out how to be productive is a key concern to success Tools exist, make sure to choose tools with the right integration HTML5 can even integrate with Java backends via RESTful web services 21

22