Skip to main content

HTML5 for the Java Web Developer

HTML5 for the Java Web Developer

The massive adoption of smartphones sporting advanced operating systems like iOS and Android as well as the rapidly growing popularity of tablet devices has changed the nature of web development. Server-side Java guys must become vastly more savvy with the various frameworks, tools and techniques needed to build mobile friendly, HTML5-based web applications.


In this session, we will distill HTML5 into the most important aspects that impact the Java web developer community. The focus of this session will be on practical tips and techniques for how to best take advantage of HTML5 features in your Java-based applications. We will have demonstrations and code samples to illustrate how to leverage your current server-side Java coding skills by adding RIA-focused HTML 5 features that are available on today's mobile platforms.

Comments

Popular posts from this blog

Java Algorithms and Data Structures

Java Algorithms and Data Structures Welcome to my Java Algorithms tutorial. In this series I will cover everything there is to know about Java algorithms and data structures. An algorithm is just the steps you take to manipulate data. A data structure is the way data is arranged in memory. There are 3 main data structure operations I will focus on first being inserting, deleting and searching for data.

Understanding Java Byte Code

Understanding Java Byte Code Java, Scala, Groovy: in the end, all JVM languages compile down to the class file format and Java byte code. It is thanks to the flexibility of this intermediate instruction set that the JVM became a platform so rich in languages. The ability to generate byte code at run time is a prerequisite for many popular libraries such as Spring or Hibernate. This talk gives an introduction to compiled Java code and discusses different libraries for generating classes at run time.