Java EE 8 What s coming? David Delabassee Oracle May 17, 2017

Size: px
Start display at page:

Download "Java EE 8 What s coming? David Delabassee Oracle May 17, 2017"

Transcription

1 Java EE 8 What s coming? David Delabassee Oracle May 17, 2017

2

3 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle.

4 Java EE APIs - Backbone of Leading Open Source Projects Web Frameworks REST Microservices Web Containers Java EE Containers PaaS

5 Java EE 8

6 JAX-RS 2.1 Reactive Client API Server-sent events Hypermedia API enhancements Integration with other JSRs and frameworks

7 JAX-RS 2.0 client newclient(); name client.target(" ).get( class); //... client.close();

8 JAX-RS 2.0 // myresource client.target(" "joe").queryparam("dpt", "1").header("some-header", "true"); response myresource.request( ).get(); //...

9 JAX-RS 2.0 client newclient(); myresource client target(" response myresource request( ).async().get( class); //...

10 JAX-RS 2.0 myresource client target(" fcustomer myresource request( ).async().get( () { ); ( customer) { // work on the customer ( throwable) { // Oops!

11 JAX-RS 2.0

12 JAX-RS 2.0 destination.path("recommended").request().header("rx-user", "Async").async().get( InvocationCallback<List<Destination>>() { completed( List<Destination> recommended) { CountDownLatch innerlatch = CountDownLatch(recommended.size()); Map<String, Forecast> forecasts = Collections.synchronizedMap( HashMap<>()); ( Destination dest : recommended) { forecast.resolvetemplate("dest", dest.getdestination()).request().async().get( InvocationCallback<Forecast>() { completed( Forecast forecast) { forecasts.put(dest.getdestination(), forecast); innerlatch.countdown();

13 JAX-RS 2.0 failed( Throwable throwable) { innerlatch.countdown(); ); { (!innerlatch.await(10, TimeUnit.SECONDS)) { // timeout ( InterruptedException e) { // Ooops, interrupted! // Continue with processing failed( Throwable throwable) { // Recommendation error );

14 JAX-RS 2.1 response newclient().target(" fresponse newclient().target(" csresponse newclient().target("

15 JAX-RS 2.1 csp client target("price/{destination").resolvetemplate("destination", "Paris").request().rx().get( class); csf client target("forecast/{destination").resolvetemplate("destination", "Paris").request().rx().get( class); csp thencombine( csf, (price, forecast) reserveifafforadble(price, forecast) );

16 JAX-RS 2.1 Server-Sent Events Persistent, one-way communication channel Text protocol, special media type "text/event-stream" Server can send multiple messages (events) to a client Can contain id, name, comment retry interval Supported in all modern browsers

17 JAX-RS 2.1 SSE SseEvent ID, Name, Comment, OutboundSseEvent Server-side representation of a Server-sent event OutboundSseEvent.Builder() InboundSseEvent Client-side representation of a Server-sent event

18 JAX-RS 2.1 SSE Server side SseEventSink Outbound Server-Sent Events public void sse) { eventsink.send( sse.newevent("an event") ); eventsink.send( sse.newevent("another event") );... eventsink.close();

19 JAX-RS 2.1 SSE Client side SseEventSource Client for processing incoming Server-Sent Events es.target(sse_target).reconnectingevery(5, ).build(); es.register( out println); // InboundSseEvent consumer es.open();... es.close();

20 JSON-P 1.1 Update JSON-P spec to stay current with emerging standards RFC The JavaScript Object Notation (JSON) Data Interchange Format RFC 6901 JSON Pointer RFC 6902 JSON Patch RFC 7396 JSON Merge Patch Add editing/transformation operations to JsonObject and JsonArray Add JSON Collectors Big JSON support

21 JSON-P 1.1 JSON-Pointer IETF RFC 6901 String syntax for referencing a JSON value E.g. "/0/user/address"

22 JSON-P 1.1 contacts pointer ("/0/name"); value pointer getvalue(contacts); [ { "name":"duke", "gender":"m", "phones":{ "home":" ", "mobile":" ", { "name":"jane", "gender":"f", "phones":{ "mobile":" " ]

23 JSON-P 1.1 JSON-Pointer IETF RFC 6901 String syntax for referencing a JSON value E.g. "/0/user/address Methods getvalue(), add(), replace(), remove() pointer ("/0/name"); result pointer replace(contacts, createvalue("joe"));

24 JSON-P 1.1 JSON-Patch IETF RFC 6902 Patch is a JSON document Array of objects / operations for modifying a JSON document Add, replace, remove, move, copy, test

25 JSON-P 1.1 [ ] { "op" : "replace", "path" : "/0/phones/mobile", "value" : " ", { "op" : "remove", "path" : "/1" [ ] { "name" : "Duke", "gender" : "M", "phones" : { "home" : " ", "mobile" : " ", { "name" : "Jane", "gender" : "F", "phones" : { "mobile" : "

26 JSON-P 1.1 [ ] { "op" : "replace", "path" : "/0/phones/mobile", "value" : " ", { "op" : "remove", "path" : "/1" [ ] { "name" : "Duke", "gender" : "M", "phones" : { "home" : " ", "mobile" : " ", { "name" : "Jane", "gender" : "F", "phones" : { "mobile" : "

27 JSON-P 1.1 [ ] { "op" : "replace", "path" : "/0/phones/mobile", "value" : " ", { "op" : "remove", "path" : "/1" [ ] { "name" : "Duke", "gender" : "M", "phones" : { "home" : " ", "mobile" : " ", { "name" : "Jane", "gender" : "F", "phones" : { "mobile" : "

28 JSON-P 1.1 [ ] { "op" : "replace", "path" : "/0/phones/mobile", "value" : " ", { "op" : "remove", "path" : "/1" [ ] { "name" : "Duke", "gender" : "M", "phones" : { "home" : " ", "mobile" : " ", { "name" : "Jane", "gender" : "F", "phones" : { "mobile" : "

29 JSON-P 1.1 [ ] { "op" : "replace", "path" : "/0/phones/mobile", "value" : " ", { "op" : "remove", "path" : "/1" [ ] { "name" : "Duke", "gender" : "M", "phones" : { "home" : " ", "mobile" : " ", { "name" : "Jane", "gender" : "F", "phones" : { "mobile" : "

30 JSON-P 1.1 [ ] { "op" : "replace", "path" : "/0/phones/mobile", "value" : " ", { "op" : "remove", "path" : "/1" [ ] { "name" : "Duke", "gender" : "M", "phones" : { "home" : " ", "mobile" : " "

31 JSON-P 1.1 target ; patch ; jsonpatch (patch); result jsonpatch.apply(target); builder (); result builder.add("/joe/phones/office", " ").remove("/Amy/age").apply(target);

32 JSON-P 1.1 JSON-Patch & JSON-Merge Patch Diff output diff(original, target); diff diff(original, target);

33 JSON-B 1.0 JAXB-like API to marshal/unmarshal Java objects to/from JSON documents Default mapping between classes and JSON Customization APIs Runtime configuration builder Allows to swap providers Natural follow on to JSON-P closes the JSON support gap

34 JSON-B 1.0 phone1 (); phone1 setbrand("apple"); phone1 setmodel("iphone 7"); phone1 setstock(1); inventory (); inventory add(phone1); inventory add(phone2); jsonb create(); stock = jsonb tojson(inventory); [ ] { "brand" : "Apple", "model" : "iphone 7", "stock" : 1, { "brand" : "Samsung", "model" : "Galaxy Note 7", "stock" : 666

35 JSON-B 1.0 Customizations Customer { id; ("name") firstname; Customer { id; getfirstname() { firstname;

36 JSON-B 1.0 Customizations Naming strategies Property ordering Property to ignore Null handling Custom instantiation Fields visibility Date/Number Formats Adapters

37 JSON-B 1.0 Customizations jsonb create(); //Ordering, naming strategy, encoding, Locale, config ().withformatting( ).withadapters( ()); jsonb create(config); jsonb newbuilder("myprovider");

38 Servlet 4.0 Support for HTTP/2 Request/response multiplexing Server push Upgrade from HTTP 1.1 Smaller community-requested improvements Allow setting the default context-path without resorting to container specific config Allow setting the jsp-file programmatically Allow encoding to be set from deployment descriptor Servlet Mapping API

39 HTTP/2 Binary Framing over single TCP connection Request/Response multiplexing Stream Prioritization Server Push Upgrade from HTTP 1.1 Header Compression Preserve HTTP semantic Flow Control

40 Servlet 4.0 PushBuilder builder = myrequest.newpushbuilder(); builder.addheader("x-pusher", ); builder.path("resource").push();

41 JSF 2.3 Better CDI Integration Way more things are injectable Finally marking legacy managed beans as deprecated Java Time support WebSocket Integration Ajax Method Invocation Class Level Bean Validation UIData and UIRepeat improvements

42 CDI 2.0 Define behavior of CDI outside of a Java EE container API to bootstrap a CDI container in Java SE Spec split into 3 parts: CDI Core CDI for Java SE CDI for Java EE Apply Interceptor on Producer Observers ordering Asynchronous events

43 CDI Event<PaymentEvent> debitevent; // producer debitevent.fire(somepayload); // consumer public void Payload p) {

44 CDI 2.0 // consumer A public void anobesrver(@observes Payload p) { // consumer B public void anotherobesrver(@observes Payload p) {

45 CDI 2.0 // consumer A public void Payload p) { // consumer B public void Payload p) {

46 CDI Event<PaymentEvent> debitevent; // async producer debitevent.fireasync(somepayload); // async consumer public void Payload p) {

47 Bean Validation 2.0 Embrace Java SE 8 Support for new Date/Time API Constraints applied to collection elements Optional wrappers Repeatable annotations Introduce new Additional features requested from community

48 Bean Validation > primaryaddressbycustomer; > = "fr", groups = Default.class, message = "unvalid = "fr", groups = SuperUser.class, message = "zip nok ") zipcode;

49 Security API for Java EE Authentication Mechanism Simplify application-accessible authentication mechanisms Identity Store Standardize application-accessible Identity Store Validate Caller's credentials and accessing related identity attributes Used by an authentication mechanism Security Context Standardize a platform-wide Security Context Programmatic access point

50 Wrap-up

51 Java EE 8 Batch Dependency Injection JACC JAXR JSTL Management Bean Validation Deployment JASPIC JMS JTA Servlet CDI EJB JAX-RPC JSF JPA Web Services Common Annotations EL JAX-RS JSON-P JavaMail Web Services Metadata Concurrency EE Interceptors JAX-WS JSP Managed Beans WebSocket Connector JSP Debugging JAXB JSON-B Security (*) MRs Releases not listed

52 Java EE 8 - Summary Work in progress Final Release - July 2017 (plan) Open Source Reference Implementations Contribute! Adopt A JSR Stay tuned

53

54

55

Java EE. OSS <OSS X Users Meeting> #21 Java EE. Akihiro Nishikawa Oracle Corporation Japan. December 12, 2017

Java EE. OSS <OSS X Users Meeting> #21 Java EE. Akihiro Nishikawa Oracle Corporation Japan. December 12, 2017 Java EE OSS #21 Java EE Akihiro Nishikawa Oracle Corporation Japan December 12, 2017 1 Safe Harbor Statement The following is intended to outline our general product direction. It

More information

What s New in JAX-RS 2.1?

What s New in JAX-RS 2.1? What s New in JAX-RS 2.1? CON3625 David Delabassée @delabassee Java and Container NaMve PlaOorm - Oracle October, 2017 1 @delabassee 2 Safe Harbor Statement The following is intended to outline our general

More information

JAX-RS and CDI Bike the (ReacIve) Bridge CON2549

JAX-RS and CDI Bike the (ReacIve) Bridge CON2549 JAX-RS and CDI Bike the (ReacIve) Bridge CON2549 David Delabassée (@delabassee) - Oracle José Paumard (@josepaumard) - Consultant October, 2017 2 @delabassee 3 @JosePaumard @JosePaumard https://github.com/josepaumard

More information

JavaEE.Next(): Java EE 7, 8, and Beyond

JavaEE.Next(): Java EE 7, 8, and Beyond JavaEE.Next(): Java EE 7, 8, and Beyond Reza Rahman Java EE/GlassFish Evangelist Reza.Rahman@Oracle.com @reza_rahman 1 The preceding is intended to outline our general product direction. It is intended

More information

Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand)

Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand) Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand) Code: URL: D101074GC10 View Online The Developing Applications for the Java EE 7 Platform training teaches you how

More information

Java EE 8 finally final! And now Jakarta EE?

Java EE 8 finally final! And now Jakarta EE? Java EE 8 finally final! And now Jakarta EE? April 2018 Давид Делабассее @delabassee Oracle Safe Harbor Statement The following is intended to outline our general product direcqon. It is intended for informaqon

More information

Java EE 7 is ready What to do next? Peter Doschkinow Senior Java Architect

Java EE 7 is ready What to do next? Peter Doschkinow Senior Java Architect Java EE 7 is ready What to do next? Peter Doschkinow Senior Java Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

1 Markus Eisele, Insurance - Strategic IT-Architecture

1 Markus Eisele, Insurance - Strategic IT-Architecture 1 Agenda 1. Java EE Past, Present and Future 2. Java EE 7 Platform as a Service 3. PaaS Roadmap 4. Focus Areas 5. All the Specs 2 http://blog.eisele.net http://twitter.com/myfear markus.eisele@msg-systems.com

More information

Hands-on Development of Web Applications with Java EE 6

Hands-on Development of Web Applications with Java EE 6 Hands-on Development of Web Applications with Java EE 6 Vítor E. Silva Souza JUG Trento Member & DISI/Unitn PhD Candidate http://disi.unitn.it/~vitorsouza/ Java Created by Sun Microsystems in 1995 Sun

More information

Java EE 8 finally final! Now what?

Java EE 8 finally final! Now what? Java EE 8 finally final! Now what? February 2018 David Delabassee - @delabassee Oracle 2 Safe Harbor Statement The following is intended to outline our general product direcjon. It is intended for informajon

More information

Java EE 6 - Update Harpreet Singh GlassFish Portfolio Product Manager

Java EE 6 - Update Harpreet Singh GlassFish Portfolio Product Manager Java EE 6 - Update Harpreet Singh GlassFish Portfolio Product Manager Sun Microsystems 1 The Elephant In The Room 2 Here's what I can... Show Say 3 Business As Usual 4 Business As Usual = Participate in

More information

MicroProfile - New and Noteworthy

MicroProfile - New and Noteworthy MicroProfile - New and Noteworthy Ivar Grimstad Principal Consultant, Cybercom Sweden https://github.com/ivargrimstad https://www.linkedin.com/in/ivargrimstad Background MicroProfile Demo and Samples Monolithic

More information

What s coming in Java EE 8

What s coming in Java EE 8 What s coming in Java EE 8 David Delabassee - @delabassee Software Evangelist Java EE Org. - Oracle June 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Agenda Preview of Java EE

More information

Developing Applications with Java EE 6 on WebLogic Server 12c

Developing Applications with Java EE 6 on WebLogic Server 12c Developing Applications with Java EE 6 on WebLogic Server 12c Duration: 5 Days What you will learn The Developing Applications with Java EE 6 on WebLogic Server 12c course teaches you the skills you need

More information

Java EE 7: Back-End Server Application Development

Java EE 7: Back-End Server Application Development Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Java EE 7: Back-End Server Application Development Duration: 5 Days What you will learn The Java EE 7: Back-End Server Application

More information

Oracle Corporation

Oracle Corporation 1 2012 Oracle Corporation Exploring Java EE 6 and WebLogic 12c Arun Gupta blogs.oracle.com/arungupta, @arungupta 2 2012 Oracle Corporation The following is intended to outline our general product direction.

More information

Java EE und WebLogic Roadmap die nächsten Schritte

Java EE und WebLogic Roadmap die nächsten Schritte Java EE und WebLogic Roadmap die nächsten Schritte Peter Doschkinow Wolfgang Weigend ORACLE Deutschland B.V. & Co. KG November 2014 Safe Harbor Statement The following is intended to outline our general

More information

CO Java EE 7: Back-End Server Application Development

CO Java EE 7: Back-End Server Application Development CO-85116 Java EE 7: Back-End Server Application Development Summary Duration 5 Days Audience Application Developers, Developers, J2EE Developers, Java Developers and System Integrators Level Professional

More information

Courses For Event Java Advanced Summer Training 2018

Courses For Event Java Advanced Summer Training 2018 Courses For Event Java Advanced Summer Training 2018 Java Fundamentals Oracle Java SE 8 Advanced Java Training Java Advanced Expert Edition Topics For Java Fundamentals Variables Data Types Operators Part

More information

Meet. Brian Stansberry Principal Software Engineer, Red Hat, Inc. June 10, Friday, June 14, 13

Meet. Brian Stansberry Principal Software Engineer, Red Hat, Inc. June 10, Friday, June 14, 13 Meet Brian Stansberry Principal Software Engineer, Red Hat, Inc. June 10, 2013 What s WildFly? New name for the JBoss Application Server project Reduce confusion over the name JBoss WildFly won a public

More information

JVA-563. Developing RESTful Services in Java

JVA-563. Developing RESTful Services in Java JVA-563. Developing RESTful Services in Java Version 2.0.1 This course shows experienced Java programmers how to build RESTful web services using the Java API for RESTful Web Services, or JAX-RS. We develop

More information

What HTTP/2 means to Java Developers?

What HTTP/2 means to Java Developers? What HTTP/2 means to Java Developers? May 2016 David Delabassee @delabassee Oracle Copyright 2016, Oracle and/or its affiliates. All rights reserved. About me Copyright 2016, Oracle and/or its affiliates.

More information

open source community experience distilled

open source community experience distilled Java EE 6 Development with NetBeans 7 Develop professional enterprise Java EE applications quickly and easily with this popular IDE David R. Heffelfinger [ open source community experience distilled PUBLISHING

More information

Baking a Java EE 8 Micro Pi Mike Croft Ondrej Mihályi. Payara Support

Baking a Java EE 8 Micro Pi Mike Croft Ondrej Mihályi. Payara Support Baking a Java EE 8 Micro Pi Mike Croft Ondrej Mihályi Payara Support Engineers @Payara_Fish Who are we? Payara Support @croft Snowboarder Payara Support @omihalyi Proud father What s this all about? How

More information

<Insert Picture Here> Java Virtual Developer Day

<Insert Picture Here> Java Virtual Developer Day 1 Java Virtual Developer Day Simon Ritter Technology Evangelist Virtual Developer Day: Agenda Keynote: The Java Platform: Now and the Future What is Java SE 7 and JDK 7 Diving into

More information

Java EE 8 - What s new?

Java EE 8 - What s new? Java EE 8 - What s new? March 2016 David Delabassee Oracle 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

<Insert Picture Here> Exploring Java EE 6 The Programming Model Explained

<Insert Picture Here> Exploring Java EE 6 The Programming Model Explained Exploring Java EE 6 The Programming Model Explained Lee Chuk Munn chuk-munn.lee@oracle.com The following is intended to outline our general product direction. It is intended for information

More information

Eclipse MicroProfile: Accelerating the adoption of Java Microservices

Eclipse MicroProfile: Accelerating the adoption of Java Microservices Eclipse MicroProfile: Accelerating the adoption of Java Microservices Emily Jiang twitter @emilyfhjiang 10 th October 2017 What is Eclipse MicroProfile? Eclipse MicroProfile is an open-source community

More information

Java SE 8 Fundamentals

Java SE 8 Fundamentals Oracle University Contact Us: +52 1 55 8525 3225 Java SE 8 Fundamentals Duration: 5 Days What you will learn This Java SE 8 Fundamentals training introduces you to object-oriented programming using the

More information

Java SE7 Fundamentals

Java SE7 Fundamentals Java SE7 Fundamentals Introducing the Java Technology Relating Java with other languages Showing how to download, install, and configure the Java environment on a Windows system. Describing the various

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved. CON-7777, JMS and WebSocket for Lightweight and Efficient Messaging

Copyright 2013, Oracle and/or its affiliates. All rights reserved. CON-7777, JMS and WebSocket for Lightweight and Efficient Messaging 1 JMS and WebSocket for Lightweight and Efficient Messaging Ed Bratt Senior Development Manager, Oracle Amy Kang Consulting Member Technical Staff, Oracle Safe Harbor Statement please note The following

More information

J2EE - Version: 25. Developing Enterprise Applications with J2EE Enterprise Technologies

J2EE - Version: 25. Developing Enterprise Applications with J2EE Enterprise Technologies J2EE - Version: 25 Developing Enterprise Applications with J2EE Enterprise Technologies Developing Enterprise Applications with J2EE Enterprise Technologies J2EE - Version: 25 5 days Course Description:

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware What's New in Oracle WebLogic Server 11g Release 1 (10.3.5) E13852-07 April 2011 Welcome to Oracle WebLogic Server. The following sections describe new and changed functionality

More information

Java EE 6: Develop Business Components with JMS & EJBs

Java EE 6: Develop Business Components with JMS & EJBs Oracle University Contact Us: + 38516306373 Java EE 6: Develop Business Components with JMS & EJBs Duration: 4 Days What you will learn This Java EE 6: Develop Business Components with JMS & EJBs training

More information

Java EE 6 & GlassFish v3 Paving the path for future. Arun Gupta Sun Microsystems, Inc.

Java EE 6 & GlassFish v3 Paving the path for future. Arun Gupta Sun Microsystems, Inc. Java EE 6 & GlassFish v3 Paving the path for future Arun Gupta (blogs.sun.com/arungupta, @arungupta) Sun Microsystems, Inc. Java EE: Past & Present Flexible Ease of Development Web Services J2EE 1.4 Enterprise

More information

<Insert Picture Here> Future<JavaEE>

<Insert Picture Here> Future<JavaEE> Future Jerome Dochez, GlassFish Architect The following/preceding is intended to outline our general product direction. It is intended for information purposes only, and may

More information

Migrating traditional Java EE applications to mobile

Migrating traditional Java EE applications to mobile Migrating traditional Java EE applications to mobile Serge Pagop Sr. Channel MW Solution Architect, Red Hat spagop@redhat.com Burr Sutter Product Management Director, Red Hat bsutter@redhat.com 2014-04-16

More information

JavaEE.Next(): Java EE 7, 8, and Beyond

JavaEE.Next(): Java EE 7, 8, and Beyond JavaEE.Next(): Java EE 7, 8, and Beyond Reza Rahman Java EE/GlassFish Evangelist Reza.Rahman@Oracle.com @reza_rahman jdt2014_b2 1 Agenda Overview A Taste of API Changes Looking Ahead 2 The preceding is

More information

Want to read more? It s also available at your favorite book retailer, including the ibookstore, the Android Marketplace, and Amazon.com.

Want to read more? It s also available at your favorite book retailer, including the ibookstore, the Android Marketplace, and Amazon.com. Want to read more? You can buy this book at oreilly.com in print and ebook format. Buy 2 books, get the 3rd FREE! Use discount code: OPC10 All orders over $29.95 qualify for free shipping within the US.

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 JAX-RS-ME Michael Lagally Principal Member of Technical Staff, Oracle 2 CON4244 JAX-RS-ME JAX-RS-ME: A new API for RESTful web clients on JavaME This session presents the JAX-RS-ME API that was developed

More information

SHORT NOTES / INTEGRATION AND MESSAGING

SHORT NOTES / INTEGRATION AND MESSAGING SHORT NOTES / INTEGRATION AND MESSAGING 1. INTEGRATION and MESSAGING is related to HOW to SEND data to and receive from ANOTHER SYSTEM or APPLICATION 2. A WEB SERVICE is a piece of software designed to

More information

Deccansoft Software Services. J2EE Syllabus

Deccansoft Software Services. J2EE Syllabus Overview: Java is a language and J2EE is a platform which implements java language. J2EE standard for Java 2 Enterprise Edition. Core Java and advanced java are the standard editions of java whereas J2EE

More information

1Z Oracle. Java Enterprise Edition 5 Enterprise Architect Certified Master

1Z Oracle. Java Enterprise Edition 5 Enterprise Architect Certified Master Oracle 1Z0-864 Java Enterprise Edition 5 Enterprise Architect Certified Master Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-864 Answer: A, C QUESTION: 226 Your company is bidding

More information

JSR 367 (JSON Binding) Review

JSR 367 (JSON Binding) Review JSR 367 (JSON Binding) Review September 15 2016 Dmitry Kornilov Agenda Goals Information to be gathered Next Steps Issues Q&A 2 Goals 3 Goals (1/2) Support binding (serialization and deserialization) for

More information

Java EE 7 Recipes for Concurrency. Presented By: Josh Juneau Author and Application Developer

Java EE 7 Recipes for Concurrency. Presented By: Josh Juneau Author and Application Developer Java EE 7 Recipes for Concurrency Presented By: Josh Juneau Author and Application Developer About Me Josh Juneau Day Job: Developer and DBA @ Fermilab Night/Weekend Job: Technical Writer - Java Magazine

More information

Keep Learning with Oracle University

Keep Learning with Oracle University Keep Learning with Oracle University Classroom Training Learning Subscription Live Virtual Class Training On Demand Cloud Technology Applications Industries education.oracle.com 3 Session Surveys Help

More information

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Duration: 5 Days US Price: $2795 UK Price: 1,995 *Prices are subject to VAT CA Price: CDN$3,275 *Prices are subject

More information

Enterprise Development

Enterprise Development Enterprise Development with What needs to be done to run JEE like applications inside Karaf? @anierbeck - Karaf PMC, Apache Member - OPS4j Pax Web Project Lead - Senior IT Consultant @codecentric - co-author

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Contents at a Glance

Contents at a Glance Contents at a Glance 1 Java EE and Cloud Computing... 1 2 The Oracle Java Cloud.... 25 3 Build and Deploy with NetBeans.... 49 4 Servlets, Filters, and Listeners... 65 5 JavaServer Pages, JSTL, and Expression

More information

What's new and noteworthy in Java EE 8? Dirk Weil, GEDOPLAN GmbH

What's new and noteworthy in Java EE 8? Dirk Weil, GEDOPLAN GmbH What's new and noteworthy in Java EE 8? 13.03.2018 Dirk Weil, GEDOPLAN GmbH Dirk Weil GEDOPLAN GmbH, Bielefeld GEDOPLAN IT Consulting Consulting, coaching, concepts, reviews, development GEDOPLAN IT Training

More information

What is it? Ian Robinson, Alasdair Nottingham, Geoff Pirie, WebSphere Chief Architect. Open Liberty Project Lead. Open Liberty Product Manager

What is it? Ian Robinson, Alasdair Nottingham, Geoff Pirie, WebSphere Chief Architect. Open Liberty Project Lead. Open Liberty Product Manager What is it? Ian Robinson, WebSphere Chief Architect Alasdair Nottingham, Open Liberty Project Lead Geoff Pirie, Open Liberty Product Manager 1 Developer Feedback 2 Developer Feedback Quotes Evil EPIC FAIL!

More information

Java EE 6: Develop Web Applications with JSF

Java EE 6: Develop Web Applications with JSF Oracle University Contact Us: +966 1 1 2739 894 Java EE 6: Develop Web Applications with JSF Duration: 4 Days What you will learn JavaServer Faces technology, the server-side component framework designed

More information

Keep Learning with Oracle University

Keep Learning with Oracle University Keep Learning with Oracle University Classroom Training Learning SubscripFon Live Virtual Class Training On Demand Cloud Technology ApplicaFons Industries educa7on.oracle.com 3 Session Surveys Help us

More information

Oracle Corporation

Oracle Corporation 1 2012 Oracle Corporation Oracle WebLogic Server 12c: Developing Modern, Lightweight Java EE 6 Applications Will Lyons, Director of WebLogic Server Product Management Pieter Humphrey, Principal Product

More information

Java EE 7 Overview and Status. Peter Doschkinow Senior Java Architect

Java EE 7 Overview and Status. Peter Doschkinow Senior Java Architect Java EE 7 Overview and Status Peter Doschkinow Senior Java Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

The Next Generation. Prabhat Jha Principal Engineer

The Next Generation. Prabhat Jha Principal Engineer The Next Generation Prabhat Jha Principal Engineer What do you wish you had in an Open Source JEE Application Server? Faster Startup Time? Lighter Memory Footprint? Easier Administration? 7 Reasons To

More information

Specialized - Mastering JEE 7 Web Application Development

Specialized - Mastering JEE 7 Web Application Development Specialized - Mastering JEE 7 Web Application Development Code: Lengt h: URL: TT5100- JEE7 5 days View Online Mastering JEE 7 Web Application Development is a five-day hands-on JEE / Java EE training course

More information

Eclipse Enterprise for Java (EE4J)

Eclipse Enterprise for Java (EE4J) Eclipse Enterprise for Java (EE4J) Presenta)on to Java Community Process Execu)ve Commi5ee Will Lyons Senior Director, Oracle WebLogic Server and Java EE Product Management September 29, 2017 2 Safe Harbor

More information

This course is intended for Java programmers who wish to write programs using many of the advanced Java features.

This course is intended for Java programmers who wish to write programs using many of the advanced Java features. COURSE DESCRIPTION: Advanced Java is a comprehensive study of many advanced Java topics. These include assertions, collection classes, searching and sorting, regular expressions, logging, bit manipulation,

More information

Java EE 5 Development for WebSphere Application Server V7

Java EE 5 Development for WebSphere Application Server V7 Java EE 5 Development for WebSphere Application Server V7 Durée: 4 Jours Réf de cours: WD370G Résumé: This 4-day instructor-led course teaches students the new features of Java Platform, Enterprise Edition

More information

Java- EE Web Application Development with Enterprise JavaBeans and Web Services

Java- EE Web Application Development with Enterprise JavaBeans and Web Services Java- EE Web Application Development with Enterprise JavaBeans and Web Services Duration:60 HOURS Price: INR 8000 SAVE NOW! INR 7000 until December 1, 2011 Students Will Learn How to write Session, Message-Driven

More information

Architect Exam Guide. OCM EE 6 Enterprise. (Exams IZO-807,1ZO-865 & IZO-866) Oracle Press ORACLG. Paul R* Allen and Joseph J.

Architect Exam Guide. OCM EE 6 Enterprise. (Exams IZO-807,1ZO-865 & IZO-866) Oracle Press ORACLG. Paul R* Allen and Joseph J. ORACLG Oracle Press OCM Java@ EE 6 Enterprise Architect Exam Guide (Exams IZO-807,1ZO-865 & IZO-866) Paul R* Allen and Joseph J. Bambara McGraw-Hill Education is an independent entity from Oracle Corporation

More information

From Java EE to Jakarta EE. A user experience

From Java EE to Jakarta EE. A user experience From Java EE to Jakarta EE A user experience A few words about me blog.worldline.tech @jefrajames Speaker me = SpeakerOf.setLastName( James ).setfirstname( Jean-François ).setbackgroundinyears(32).setmindset(

More information

Building Offline Mobile Apps with Oracle JET and MCS

Building Offline Mobile Apps with Oracle JET and MCS Building Offline Mobile Apps with Oracle JET and MCS JavaScript Persistence and Offline Sync Library for Cordova or Browser based applications MCS Sync Express Lyudmil Pelov @lpelov Oracle A-Team Nov,

More information

Lessons learned from real-world deployments of Java EE 7. Arun Gupta, Red

Lessons learned from real-world deployments of Java EE 7. Arun Gupta, Red Lessons learned from real-world deployments of Java EE 7 Arun Gupta, Red Hat @arungupta DEVELOPER PRODUCTIVITY MEETING ENTERPRISE DEMANDS Java EE 7! More annotated POJOs! Less boilerplate code! Cohesive

More information

What is tackled in the Java EE Security API (Java EE 8)

What is tackled in the Java EE Security API (Java EE 8) What is tackled in the Java EE Security API (Java EE 8) WHY UPDATE? ALREADY AVAILABLE? AGENDA JAVA EE SECURITY JSR-375 SOTERIA CONCEPTS DEMO RUDY DE BUSSCHER C4J Senior Java Web Developer, Java Coach JSR-375

More information

CMP 436/774. Introduction to Java Enterprise Edition. Java Enterprise Edition

CMP 436/774. Introduction to Java Enterprise Edition. Java Enterprise Edition CMP 436/774 Introduction to Java Enterprise Edition Fall 2013 Department of Mathematics and Computer Science Lehman College, CUNY 1 Java Enterprise Edition Developers today increasingly recognize the need

More information

Web Application Development Using JEE, Enterprise JavaBeans and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA Web Application Development Using JEE, Enterprise Java and JPA Duration: 5 days Price: $2795 *California residents and government employees call for pricing. Discounts: We offer multiple discount options.

More information

Developing Applications for the Java EE 7 Platform 9-2

Developing Applications for the Java EE 7 Platform 9-2 Developing Applications for the Java EE 7 Platform 9-2 REST is centered around an abstraction known as a "resource." Any named piece of information can be a resource. A resource is identified by a uniform

More information

Web Application Development Using JEE, Enterprise JavaBeans and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA Web Application Development Using JEE, Enterprise Java and JPA Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

More information

JBoss Enterprise Application Platform 6

JBoss Enterprise Application Platform 6 JBoss Enterprise Application Platform 6 Development Guide Edition 2 For Use with JBoss Enterprise Application Platform 6 Last Updated: 2017-10-16 JBoss Enterprise Application Platform 6 Development Guide

More information

EMEA/Africa/Middle East - Tuesday June 25th, :00:00 a.m. - 1:00pm BST / 10:00:00 a.m. - 2:00 p.m.cest /

EMEA/Africa/Middle East - Tuesday June 25th, :00:00 a.m. - 1:00pm BST / 10:00:00 a.m. - 2:00 p.m.cest / EMEA/Africa/Middle East - Tuesday June 25th, 2013 9:00:00 a.m. - 1:00pm BST / 10:00:00 a.m. - 2:00 p.m.cest / 1:30:00 p.m. - 5:30:00 p.m. IST / 12:00:00 p.m. - 4:00 p.m. MSK / 08:00:00 a.m. - 12:00 p.m.

More information

JBoss Enterprise Application Platform 6.3

JBoss Enterprise Application Platform 6.3 JBoss Enterprise Application Platform 6.3 Development Guide For Use with Red Hat JBoss Enterprise Application Platform 6 Last Updated: 2017-10-16 JBoss Enterprise Application Platform 6.3 Development

More information

V3 EJB Test One Pager

V3 EJB Test One Pager V3 EJB Test One Pager Overview 1. Introduction 2. EJB Testing Scenarios 2.1 EJB Lite Features 2.2 API only in Full EJB3.1 3. Document Review 4. Reference documents 1. Introduction This document describes

More information

Adopt-a-JSR Panel for 16 October 2014

Adopt-a-JSR Panel for 16 October 2014 Adopt-a-JSR Panel for VJUG 1 @jcp_org 16 October 2014 Introduction of Speakers Ed Burns Arun Gupta Heather VanCura Martijn Verburg 2 3 Celebrating 15 years! 4 JCP is now more open than before Public JSR

More information

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP 2013 Empowering Innovation DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP contact@dninfotech.com www.dninfotech.com 1 JAVA 500: Core JAVA Java Programming Overview Applications Compiler Class Libraries

More information

RESTEasy. Distributed peace of mind

RESTEasy. Distributed peace of mind RESTEasy Distributed peace of mind 1 Agenda Why REST? Writing RESTFul Web Services in Java JAX-RS RESTEasy features RESTEasy Roadmap 2 Speaker s Qualifications RESTEasy project lead Fully certified JAX-RS

More information

Java Training Center, Noida - Java Expert Program

Java Training Center, Noida - Java Expert Program Java Training Center, Noida - Java Expert Program Database Concepts Introduction to Database Limitation of File system Introduction to RDBMS Steps to install MySQL and oracle 10g in windows OS SQL (Structured

More information

Roadmap to Cloud with Cloud Application Foundation

Roadmap to Cloud with Cloud Application Foundation Roadmap to Cloud with Cloud Application Foundation Maciej Gruszka Oracle FMW PM, EMEA Copyright 2014, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The preceding is intended

More information

Agenda Time (PT) 8:45 a.m. Event Platform Opening 9:00 a.m. Keynote - Java: Present and Future Java EE 7 Java SE 8 Java Embedded

Agenda Time (PT) 8:45 a.m. Event Platform Opening 9:00 a.m. Keynote - Java: Present and Future Java EE 7 Java SE 8 Java Embedded Virtual Developer Day: Java 2014 May 6 th 9:00 a.m. - 1:00 p.m. PDT / 12:00 p.m. - 4:00 p.m. EDT / 1:00 p.m. 5:00 p.m. BRT Agenda Time (PT) 8:45 a.m. Event Platform Opening 9:00 a.m. Keynote - Java: Present

More information

Spring Framework 5.0 Themes & Trends

Spring Framework 5.0 Themes & Trends Spring Framework 5.0 Themes & Trends a.k.a. Reactive Microservices on JDK 9 Juergen Hoeller Spring Framework Lead Pivotal 1 Spring Framework 4.3 Last 4.x feature release! 4.3 GA: June 2016 Extended support

More information

Kaazing Gateway: An Open Source

Kaazing Gateway: An Open Source Kaazing Gateway: An Open Source HTML 5 Websocket Server Speaker Jonas Jacobi Co-Founder: Kaazing Co-Author: Pro JSF and Ajax, Apress Agenda Real-Time Web? Why Do I Care? Scalability and Performance Concerns

More information

JAX-RS 2.1 New Features

JAX-RS 2.1 New Features JAX-RS 2.1 New Features What's in the queue for REST in Java EE 8? Markus KARG (Head Crashing Informatics, JSR 339, JSR 370) Java Forum Stuttgart, 2015-07-09 Legal Disclaimer This presentation expresses

More information

JAVA EE 7 FROM AN HTML5 PERSPECTIVE. Ed and Oliver

JAVA EE 7 FROM AN HTML5 PERSPECTIVE. Ed and Oliver JAVA EE 7 FROM AN HTML5 PERSPECTIVE Ed Burns @edburns and Oliver Szymanski @source_knights Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

Market leading web application server product

Market leading web application server product JE US Market leading web application server product is the first Web Application Server in the world to be Java EE 6 Certified. can quickly and easily implement cloud environments and execute large transactions.

More information

Introduction to Java Platform, Enterprise Edition 7

Introduction to Java Platform, Enterprise Edition 7 An Oracle White Paper June 2013 Introduction to Java Platform, Enterprise Edition 7 Executive Overview... 3 Introduction... 3 Introducing Java Platform, Enterprise Edition 7... 5 Deliver Dynamic Scalable

More information

Red Hat JBoss Enterprise Application Platform 7.2

Red Hat JBoss Enterprise Application Platform 7.2 Red Hat JBoss Enterprise Application Platform 7.2 Introduction to JBoss EAP For Use with Red Hat JBoss Enterprise Application Platform 7.2 Last Updated: 2018-11-29 Red Hat JBoss Enterprise Application

More information

Open Java EE and Eclipse MicroProfile - A New Java Landscape for Cloud Native Apps

Open Java EE and Eclipse MicroProfile - A New Java Landscape for Cloud Native Apps EclipseCon Europe 2017 Open Java EE and Eclipse MicroProfile - A New Java Landscape for Cloud Native Apps Kevin Sutter MicroProfile and Java EE Architect @kwsutter Emily Jiang MicroProfile Development

More information

CO Java EE 6: Develop Web Services with JAX-WS & JAX-RS

CO Java EE 6: Develop Web Services with JAX-WS & JAX-RS CO-77754 Java EE 6: Develop Web Services with JAX-WS & JAX-RS Summary Duration 5 Days Audience Java Developer, Java EE Developer, J2EE Developer Level Professional Technology Java EE 6 Delivery Method

More information

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1

Vision of J2EE. Why J2EE? Need for. J2EE Suite. J2EE Based Distributed Application Architecture Overview. Umair Javed 1 Umair Javed 2004 J2EE Based Distributed Application Architecture Overview Lecture - 2 Distributed Software Systems Development Why J2EE? Vision of J2EE An open standard Umbrella for anything Java-related

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13

Copyright 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 To Building WebSocket Apps in Java using JSR 356 Arun Gupta blogs.oracle.com/arungupta, @arungupta 2 The preceding is intended to outline our general product direction. It is intended for information

More information

Introduction to MVC 1.0

Introduction to MVC 1.0 Introduction to MVC 1.0 David Delabassee - @delabassee Software Evangelist Cloud & Microservices - Oracle Java Day Tokyo 2016 May 24, 2016 Copyright 2016, Oracle and/or its its affiliates. All All rights

More information

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

JSR 365 (CDI 2.0) Review

JSR 365 (CDI 2.0) Review JSR 365 (CDI 2.0) Review June 16 2015 Antoine Sabot-Durand Agenda History & Background Goals CDI survey Expert Group and working method CDI 2.0 Early Draft 1 Work done on RI and TCK Next steps Q&A 2 History

More information

Optimizing Enterprise Java for a Microservices Architecture Otávio

Optimizing Enterprise Java for a Microservices Architecture Otávio Optimizing Enterprise Java for a Microservices Architecture Otávio Santana @otaviojava otaviojava@apache.org Enterprise Java Standards History J2EE 1.2 2000 Release Cadence J2EE 1.3 J2EE 1.4 2005 Java

More information

"Web Age Speaks!" Webinar Series

Web Age Speaks! Webinar Series "Web Age Speaks!" Webinar Series Java EE Patterns Revisited WebAgeSolutions.com 1 Introduction Bibhas Bhattacharya CTO bibhas@webagesolutions.com Web Age Solutions Premier provider of Java & Java EE training

More information

Server-Side JavaScript auf der JVM. Peter Doschkinow Senior Java Architect

Server-Side JavaScript auf der JVM. Peter Doschkinow Senior Java Architect Server-Side JavaScript auf der JVM Peter Doschkinow Senior Java Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not be

More information

Apache Tomcat 9. Preview. Mark Thomas, August Pivotal Software, Inc. All rights reserved.

Apache Tomcat 9. Preview. Mark Thomas, August Pivotal Software, Inc. All rights reserved. 2 Apache Tomcat 9 Preview Mark Thomas, August 2015 Introduction Apache Tomcat committer since December 2003 markt@apache.org Tomcat 8 release manager Member of the Servlet, WebSocket and EL expert groups

More information

Module 3 Web Component

Module 3 Web Component Module 3 Component Model Objectives Describe the role of web components in a Java EE application Define the HTTP request-response model Compare Java servlets and JSP components Describe the basic session

More information