Java EE Presentations at JavaOne 2017
Published on 26 Oct 2017
by Dominika TasarzDidn't get a chance to attend JavaOne 2017 earlier this month? You can now watch some of the conference talks online! See below for our selection of the most interesting and useful presentations about Java EE.
All JavaOne 2017 recorded talks can be found on the Oracle Java YouTube channel.
'Java EE 8: What’s New in the Java EE 8 Release' by Linda DeMichiel
This session presents an overview of the recent release of the Java EE 8 platform. Topics covered include the new JSON Binding API, updates to the JSON Processing API, the JAX-RS reactive client API, JAX-RS support for server-sent events, HTTP/2 support in Servlet, the new Java EE Security API, and new features in Bean Validation and CDI.
'Java EE: Heavyweight or Lightweight—Mythbusters' by Adam Bien
How fast is a deployment? What is the minimum size of a Java EE thin WAR? What are the RAM requirements of application servers? What is the out-of-the-box performance? How many transactions per second are achievable? What is the performance penalty of EJB/CDI/JPA and so on? What is the overhead of a transaction? Is Java EE lightweight enough to run in clouds? How big (in terms of disk size) are application servers? This session asks as many heretical questions about Java EE & Co. as possible. Come to answer them together, with plain numbers and code. Heretical questions are highly welcome!
'Taking Java EE to the Clouds' by Rodrigo Bortoloto, Ryan Cuprak & Reza Rahman
This session is a fast-paced tour of the many options available for running Java EE applications in the cloud. It covers bare metal IaaS options such as AWS; PaaS options that provide native support for Java EE, such as Oracle Java Cloud Service/BlueMix; and everything in between. It also discusses how to deploy Dockerized Java EE applications to options such as Jelastic as well as running Java EE applications by using fat-jar solutions such as WildFly Swarm on bare JVM-based platforms such as Heroku. The presentation includes plenty of code examples and demos along the way.
'Panel: Accelerating the Adoption of Java EE 8 with MicroProfile' by Mark Little, John Clingan, David Blevins, Mike Croft & Kevin Sutter
'Baking a Java EE 8 Micro Pi' by Ondrej Mihalyi & Mike Croft
'Contemporary Java Web Applications with JSF 2.3' by Ed Burns
- Use of Servlet 4.0 server push
- WebSocket push
- Ajax method invocation
- Multifield validation
- Tighter CDI integration
- Component search expressions
'Servlet 4 0: A New Twist on an Old Favorite' by Ed Burns & Shing wai Chan
Java Servlets have been around for longer than Java EE, or even J2EE. This session from the co–spec leads surveys the new features in Servlet 4.0 and puts them in the context of their usefulness in a contemporary microservices-style architecture. Features covered include:
- Support for HTTP/2, including server push
- Default context path
- Mapping discovery
- Encoding clarifications
- HTTP trailers, including their relevance to gRPC
The session examines these features in light of current application development trends, such as containerization, continuous delivery, 12-factor apps, and adapting legacy apps to take advantage of cloud-native technologies.
Related Posts
Moving Beyond GlassFish - Here's Why and How
Published on 11 Nov 2024
by Chiara Civardi
0 Comments
If you’re still managing Java applications on GlassFish middleware, you might be hitting some roadblocks, such as difficulties with automation, lack of integrated monitoring and official support and limited abilities with modern tools. However, ...
Nugget Friday - Building Resilient Microservices with MicroProfile Fault Tolerance
Published on 08 Nov 2024
by Luqman Saeed
0 Comments
While we all want maximum uptime for our software systems, failures and downtimes are inevitable. However, these can be minimized and quickly resolved through comprehensive, robust and well-designed fault tolerance mechanisms. This Nugget ...