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

Size: px
Start display at page:

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

Transcription

1 <Insert Picture Here> Exploring Java EE 6 The Programming Model Explained Lee Chuk Munn chuk-munn.lee@oracle.com

2 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.

3 What's New in the Java EE 6 Platform? New and updated components EJB 3.1 (+Lite) JPA 2.0 Servlet 3.0 JSF 2.0 JAX-RS 1.1 Bean Validation 1.0 DI 1.0 CDI 1.0 Connectors 1.6 Managed Beans 1.0 Interceptors 1.1 JSP 2.2 EL 2.2 JSR JASPIC 1.1 JACC 1.5 JAX-WS 2.2 JSR

4 Changes in Java EE 6 23% 52% 11% 14% Unchanged Completely new Major updates Regular updates

5 Java EE 6 Web Profile CDI Extensio ns ns Web Cont ainer Extensions JSP JAX-RS 1.1 JSF JSTL 1.2 Servlet 3.0 / EL 2.2 DI 1.0 // CDI 1.0 // Interceptors 1.1 // JSR Managed Beans 1.0 EJB 3.1 JPA 2.0 // JTA 1.1 Bean Validation 1.0

6 Simplfied Packaging Java EE 5 Java EE 6 foo.ear foo_web.war WEB-INF/web.xml WEB-INF/classes com.sun.fooservlet com.sun.ticktock foo_ejb.jar com.sun.foobean com.sun.foohelper foo.war WEB-INF/classes com.sun.fooservlet com.sun.ticktock com.sun.foobean com.sun.foohelper

7 Web Apps Simplified Packaging Web Application WEB-INF/classes com/acme/myservlet.class com/acme/myfilter.class WEB-INF/lib someframework.jar WEB-INF/web.xml index.html main.css jquery js ui/jquery.ui.core.js ui/jquery.ui.widget.js

8 Web Apps Simplified Packaging Web Application WEB-INF/classes com/acme/myservlet.class com/acme/myfilter.class WEB-INF/lib /foo ) public class MyServlet { /foo ) public class MyFilter { } WEB-INF/web.xml index.html main.css jquery js ui/jquery.ui.core.js ui/jquery.ui.widget.js

9 Web Apps Simplified Packaging Web Application WEB-INF/classes com/acme/myservlet.class com/acme/myfilter.class WEB-INF/lib someframework.jar Framework Jar META-INF/web-fragment.xml com/fw/fwservlet.class com/fw/fwfilter.class index.html main.css jquery js ui/jquery.ui.core.js ui/jquery.ui.widget.js

10 Web Apps Simplified Packaging Web Application WEB-INF/classes com/acme/myservlet.class com/acme/myfilter.class WEB-INF/lib someframework.jar jquery-ui jar jquery Resource Jar META-INF/resources/jquery js META-INF/resources/ui/jquery.ui.core.js META-INF/resources/ui/jquery.ui.widget.js index.html main.css

11 Web Apps Simplified Packaging Web Application WEB-INF/classes com/acme/myservlet.class com/acme/myfilter.class WEB-INF/lib someframework.jar jquery-ui jar Simpler packaging Drag and drop self configuring frameworks Resource JARs index.html main.css

12 Managed Bean as the Foundation Plain Java objects (POJOs) Lifecycle managed by container Foundation for other component types Not something that developers would use directly Optional name Interceptors

13 Managed Bean MyCustomer ) public class Customer DataSource db; //Inject another managed Address address; private void init() { // }

14 EJB Components as Managed Beans All managed beans core services are available in EJB EJB component model extends managed beans by @Singleton EJBs can now be view as features on managed beans Just as other types of components

15 Incremental Programming Model Application changes over time Requirement change, functions of classes/objects changes Allows you to evolve your application gracefully Start with Use all the basic services lifecycle, resource injection, etc Turn them in to EJBs, Enitites, etc to take advantage of new capabilities No change to (local) client

16 Incremental Programming public class Customer DataSource db; //Inject another managed Address address; private void init() { // }

17 Incremental Programming public class Customer DataSource db; //Inject another managed Address address; private void init() { // }

18 Common Injection Service Framework Injection services available to all objects Not restricted to specific components eg. EJB Context and Dependency Injection Managed beans on steroids Opt-in technology on per-module basis WEB-INF/beans.xml, META-INF/beans.xml Key CDI concepts Strongly typed for typesafety Loose coupling events, interceptors, decorators Context and scope management Integration with EL Bridge EJB (business) to JSF (presentation)

19 CDI User user;

20 CDI User user; Type describes the capability of the user

21 CDI Example What type of User user;

22 User user; Qualifier describes the characteristic of the user

23 Uniformity Annotations are additive New behaviour refine pre-existing ones Unless annotation conflicts with the semantics of component Eg. session scoped for JAX-RS components Eg. JAX-RS resource classes are POJOs Use JAX-RS specific injection capabilities Additional annotations to turn resource classes into CDI managed beans or EJBs Use the new services with REST

24 JAX-RS root ) public class RootResource UriInfo {id} ) public SubResource id ) String id) { } } return (new SubResource(id));

25 JAX-RS Example As a managed @Path( root ) public class RootResource UriInfo DataSource {id} ) public SubResource id ) String id) { } } return (new SubResource(id));

26 JAX-RS Example As a CDI bean, and root ) public class RootResource DataSource {id} ) public SubResource id ) String id) { } } return (new SubResource(id));

27 APIs That Work Better Together Previous versions have a bunch of APIs that are quite independent of each other Java EE 5/6 introduces lots of 'services' API Managed bean, CDI, validation, interceptors, etc Aiming to get API to work better together Eg. Bean Validation integrated into JSF, JPA But not so well with CDI working on it Use of SPI to provide integration to other frameworks

28 Java EE 6

29 After Frameworks

30 Java EE 6 Platform Extensions

31 Extensibility Integrating 3 rd party frameworks Pluggability contracts make extension look like build-in technologies Two main extension points in Java EE 6 Servlet 3.0 pluggability CDI extensions

32 Servlet 3.0 Pluggability Primary to address 3 rd party web frames Drag and drop model Dynamic or static registration for frameworks Configuration, initialization, code generation, etc Results in ready to use framework JARs Modular web.xml and web-fragment.xml Framework contains a fragment of web.xml META-INF/web-fragment.xml Extension can discover and process annotated classes

33 Pluggability public class DoSomething { Register with service loader framework myframework.jar META-INF/services/ javax.servlet.servletcontainerinitializer myframework.frameworkloader

34 Pluggability public class FrameworkLoader implements ServletContainerInitializer { public void onstartup(set<class<?>> c, ServletContext ctx) { //Load framework controller ServletRegistration.Dynamic reg = ctx.addservlet( MyFrameworkController, myframework.controller.frameworkcontroller ); reg.setinitparameter( config, /WEB-INF/config.properties ); } } //Other processing eg. Code generation...

35 Extending CDI Portable extension framework provides standard way of extending CDI Drag and drop Extensions can process any annotated types What can you do with portable extensions Introduce new bean types Satisfy injection points Introduce custom scopes Augment or substitute bean's annotations and/or metadata Limited by your imagination

36 Portable public class HandleMessage { New JID EntityManager em; New bean type Integrates well {body} ) public Object handle(@named( body ) int custid) { return (em.find(customer.class, custid)); } Export a named bean to handle method only

37 Conclusion A Better Platform Less boilerplate code Simpler packaging Uniform use of annotations Consistent programming model Extensible Simple things should be simple complex things should be possible Alan Kay

38

39 For More Information search.oracle.com or oracle.com

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 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

JAX-RS and Jersey Paul Sandoz

JAX-RS and Jersey Paul Sandoz JAX-RS and Jersey Paul Sandoz JAX-RS co-spec lead and Jersey lead mailto:paul.sandoz@sun.com http://blogs.sun.com/sandoz https://twitter.com/paulsandoz/ 1 Overview Terminology Information & Status Integration

More information

<Insert Picture Here> Productive JavaEE 5.0 Development

<Insert Picture Here> Productive JavaEE 5.0 Development Productive JavaEE 5.0 Development Frank Nimphius Principle Product Manager Agenda Introduction Annotations EJB 3.0/JPA Dependency Injection JavaServer Faces JAX-WS Web Services Better

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

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

This is the first part of a multi-article series. For part 2 please see: Dependency Injection in Java EE 6 - Part 2

This is the first part of a multi-article series. For part 2 please see: Dependency Injection in Java EE 6 - Part 2 November 2009 Discuss this Article This is the first part of a multi-article series. For part 2 please see: Dependency Injection in Java EE 6 - Part 2 This series of articles introduces Contexts and Dependency

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

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 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

ENTERPRISE JAVABEANS TM (EJB TM ) 3.1 TECHNOLOGY

ENTERPRISE JAVABEANS TM (EJB TM ) 3.1 TECHNOLOGY ENTERPRISE JAVABEANS TM (EJB TM ) 3.1 TECHNOLOGY Kenneth Saks Senior Staff Engineer SUN Microsystems TS-5343 Learn what is planned for the next version of Enterprise JavaBeans (EJB ) technology 2008 JavaOne

More information

Cleveland Java Users Group Java Enterprise Edition 6 Update

Cleveland Java Users Group Java Enterprise Edition 6 Update Cleveland Java Users Group Java Enterprise Edition 6 Update Scott Seighman Sr. Sales Consultant 1 1 1 Agenda Brief Java Update Java Enterprise Edition Overview Major Themes in Java

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

Seam 3. Pete Muir JBoss, a Division of Red Hat

Seam 3. Pete Muir JBoss, a Division of Red Hat Seam 3 Pete Muir JBoss, a Division of Red Hat Road Map Introduction Java EE 6 Java Contexts and Dependency Injection Seam 3 Mission Statement To provide a fully integrated development platform for building

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

PATTERNS & BEST PRACTICES FOR CDI

PATTERNS & BEST PRACTICES FOR CDI PATTERNS & BEST PRACTICES FOR CDI SESSION 20181 Ryan Cuprak e-formulation Analyst, Author, Connecticut Java Users Group President Reza Rahman Resin Developer, Java EE/EJB/JMS JCP expert, Author EJB 3 in

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

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

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

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

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

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

Apache OpenWebBeans and DeltaSpike Deep Dive Mark Struberg Gerhard Petracek

Apache OpenWebBeans and DeltaSpike Deep Dive Mark Struberg Gerhard Petracek CDI @ Apache OpenWebBeans and DeltaSpike Deep Dive Mark Struberg Gerhard Petracek Agenda CDI and its terms Why OpenWebBeans? Portable CDI Extensions CDI by example with DeltaSpike CDI is a... JCP specification

More information

Shale and the Java Persistence Architecture. Craig McClanahan Gary Van Matre. ApacheCon US 2006 Austin, TX

Shale and the Java Persistence Architecture. Craig McClanahan Gary Van Matre. ApacheCon US 2006 Austin, TX Shale and the Java Persistence Architecture Craig McClanahan Gary Van Matre ApacheCon US 2006 Austin, TX 1 Agenda The Apache Shale Framework Java Persistence Architecture Design Patterns for Combining

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

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

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

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

TheServerSide.com. Part 3 of dependency injection in Java EE 6

TheServerSide.com. Part 3 of dependency injection in Java EE 6 TheServerSide.com Part 3 of dependency injection in Java EE 6 This series of articles introduces Contexts and Dependency Injection for Java EE (CDI), a key part of the Java EE 6 platform. Standardized

More information

APPLICATION SECURITY ENHANCEMENTS IN JAVA EE 6

APPLICATION SECURITY ENHANCEMENTS IN JAVA EE 6 APPLICATION SECURITY ENHANCEMENTS IN JAVA EE 6 SRINI PENCHIKALA JavaOne 2010 Conference ABOUT THE SPEAKER Security Architect Certified Scrum Master Author, Editor (InfoQ) IASA Austin Chapter Leader Detroit

More information

Spring Framework 2.5: New and Notable. Ben Alex, Principal Software Engineer, SpringSource

Spring Framework 2.5: New and Notable. Ben Alex, Principal Software Engineer, SpringSource Spring Framework 2.5: New and Notable Ben Alex, Principal Software Engineer, SpringSource GOAL> Learn what s new in Spring 2.5 and why it matters to you springsource.com 2 Agenda Goals of Spring 2.5 Support

More information

JSR-299 (CDI), Weld and the Future of Seam. Dan Allen Principal Software Engineer JBoss by Red Hat

JSR-299 (CDI), Weld and the Future of Seam. Dan Allen Principal Software Engineer JBoss by Red Hat JSR-299 (CDI), Weld and the Future of Seam Dan Allen Principal Software Engineer JBoss by Red Hat Agenda 2 Java EE today Where JSR-299 fits in JSR-299 themes CDI programming model tour CDI extensions Weld

More information

Refactoring to Seam. NetBeans. Brian Leonard Sun Microsystems, Inc. 14o

Refactoring to Seam. NetBeans. Brian Leonard Sun Microsystems, Inc. 14o Refactoring to Seam NetBeans Brian Leonard Sun Microsystems, Inc. 14o AGENDA 2 > The Java EE 5 Programming Model > Introduction to Seam > Refactor to use the Seam Framework > Seam Portability > Q&A Java

More information

Concepts: business logic and middleware

Concepts: business logic and middleware Concepts: business logic and middleware Business logic (Dalykinis funkcionalumas) models real life business objects is part of functional requirements, creates essential added value that customer is willing

More information

Session 12. RESTful Services. Lecture Objectives

Session 12. RESTful Services. Lecture Objectives Session 12 RESTful Services 1 Lecture Objectives Understand the fundamental concepts of Web services Become familiar with JAX-RS annotations Be able to build a simple Web service 2 10/21/2018 1 Reading

More information

Metadata driven component development. using Beanlet

Metadata driven component development. using Beanlet Metadata driven component development using Beanlet What is metadata driven component development? It s all about POJOs and IoC Use Plain Old Java Objects to focus on business logic, and business logic

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

Spring 2.5 on the Way to 3.0

Spring 2.5 on the Way to 3.0 Spring 2.5 on the Way to 3.0 Jürgen Höller VP & Distinguished Engineer SpringSource Copyright 2008 SpringSource. Copying, publishing or distributing without express written permission is prohibited. Agenda

More information

Developing RESTful Services in Java

Developing RESTful Services in Java Developing RESTful Services in Java Version 1.1 Instructor s Guide Overview We begin this course, as we do all our Java web services courses these days, with a twochapter overview of web services and the

More information

Introduction to CDI Contexts and Dependency Injection

Introduction to CDI Contexts and Dependency Injection Introduction to CDI CDI overview A set of interlocking functionality: typesafe dependency injection, contextual lifecycle management for injectable objects, events interceptors, decorators, Based around

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

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

New Features in EJB 3.1

New Features in EJB 3.1 New Features in EJB 3.1 Sangeetha S E-Commerce Research Labs, Infosys Technologies Limited 2010 Infosys Technologies Limited Agenda New Features in EJB 3.1 No Interface View EJB Components in WAR Singleton

More information

Java EE Application Assembly & Deployment Packaging Applications, Java EE modules. Model View Controller (MVC)2 Architecture & Packaging EJB Module

Java EE Application Assembly & Deployment Packaging Applications, Java EE modules. Model View Controller (MVC)2 Architecture & Packaging EJB Module Java Platform, Enterprise Edition 5 (Java EE 5) Core Java EE Java EE 5 Platform Overview Java EE Platform Distributed Multi tiered Applications Java EE Web & Business Components Java EE Containers services

More information

Java EE 6 Community Roundtable. Reza Rahman Independent Consultant Author, EJB 3 in Action

Java EE 6 Community Roundtable. Reza Rahman Independent Consultant Author, EJB 3 in Action Java EE 6 Community Roundtable Reza Rahman Independent Consultant Author, EJB 3 in Action reza@rahmannet.net Java EE 6: Expanding Horizons Java EE 5 Ease-of-use, annotations, freedom from XML, new APIs

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

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

Injection Of Entitymanager

Injection Of Entitymanager Injection Of Entitymanager Example injection-of-entitymanager can be browsed at https://github.com/apache/tomee/tree/master/examples/injection-ofentitymanager This example shows use of @PersistenceContext

More information

Fun with EJB and OpenEJB. David #OpenEJB

Fun with EJB and OpenEJB. David #OpenEJB Fun with EJB and OpenEJB David Blevins @dblevins #OpenEJB The Basics - History Timeline 1999 - Founded in Exoffice - EJB 1.1 level 2001 - Integrated in Apple s WebObjects 2002 - Moved to SourceForge 2003

More information

TheServerSide.com. Dependency Injection in Java EE 6 - Part 5

TheServerSide.com. Dependency Injection in Java EE 6 - Part 5 TheServerSide.com Dependency Injection in Java EE 6 - Part 5 This series of articles introduces Contexts and Dependency Injection for Java EE (CDI), a key part of the Java EE 6 platform. Standardized via

More information

Java EE 6 & Spring: A Lover s Quarrel. Derrick Kittler Mauricio Maltron Leal Vamsi Chemitiganti

Java EE 6 & Spring: A Lover s Quarrel. Derrick Kittler Mauricio Maltron Leal Vamsi Chemitiganti & Spring: A Lover s Quarrel Derrick Kittler Mauricio Maltron Leal Vamsi Chemitiganti Agenda o The goal of this talk o Evolution of Spring o Evolution of o Side-by-Side o Migrating o and Spring Coexistence

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

Java EE 6 New features in practice Part 2

Java EE 6 New features in practice Part 2 Java EE 6 New features in practice Part 2 Java and all Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. License for use and distribution

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

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Developing Applications for Oracle WebLogic Server 12c Release 1 (12.1.1) E24368-02 January 2012 This document describes building WebLogic Server e-commerce applications using

More information

WAS V7 Application Development

WAS V7 Application Development IBM Software Group WAS V7 Application Development An IBM Proof of Technology Updated September 28, 2009 WAS v7 Programming Model Goals One word Simplify Simplify the programming model Simplify application

More information

<Insert Picture Here> Accelerated Java EE Development: The Oracle Way

<Insert Picture Here> Accelerated Java EE Development: The Oracle Way 1 1 Accelerated Java EE Development: The Oracle Way Dana Singleterry Principal Product Manager Oracle JDeveloper and Oracle ADF http://blogs.oracle.com/dana Warning demo contains

More information

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

Java EE 8 What s coming? David Delabassee Oracle May 17, 2017 Java EE 8 What s coming? David Delabassee - @delabassee Oracle May 17, 2017 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes

More information

OSGi Application Development using GlassFish Server. Version 1.0

OSGi Application Development using GlassFish Server. Version 1.0 OSGi Application Development using GlassFish Server Table of Contents Version 1.0 1 Introduction:...3 1.1 New to OSGi?...3 1.2 Relationship between GlassFish Server & OSGi...4 2 OSGi Applications in GlassFish

More information

Apache TomEE Tomcat with a kick

Apache TomEE Tomcat with a kick Apache TomEE Tomcat with a kick David Blevins dblevins@apache.org @dblevins Jonathan Gallimore jgallimore@apache.org @jongallimore Apache TomEE: Overview Java EE 6 Web Profile certification in progress

More information

Seam & Web Beans. Pete Muir JBoss, a division of Red Hat.

Seam & Web Beans. Pete Muir JBoss, a division of Red Hat. Seam & Web Beans Pete Muir JBoss, a division of Red Hat http://in.relation.to/bloggers/pete pete.muir@jboss.org 1 Road Map Background Seam Web Beans 2 Advantages of JSF/JPA over Struts/EJB 2 Fewer, finer

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

David Blevins State of OpenEJB 3.0

David Blevins State of OpenEJB 3.0 David Blevins dblevins@visi.com State of OpenEJB 3.0 OpenEJB 1 History OpenEJB 2 EJB 1.1 Only CMP with Castor JDO Embeddable Tomcat Integration Standalone Capable EJB 2.1 Certified CMP with TranQL IoC

More information

The 1st Java professional open source Convention Israel 2006

The 1st Java professional open source Convention Israel 2006 The 1st Java professional open source Convention Israel 2006 The Next Generation of EJB Development Frederic Simon AlphaCSP Agenda Standards, Open Source & EJB 3.0 Tiger (Java 5) & JEE What is EJB 3.0

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

JSR 299: Web Beans. Web Beans Expert Group. Version: Public Review

JSR 299: Web Beans. Web Beans Expert Group. Version: Public Review JSR 299: Web Beans Web Beans Expert Group Version: Public Review Table of Contents 1. Architecture... 1 1.1. Contracts... 1 1.2. Supported environments... 1 1.3. Relationship to other specifications...

More information

Fast Track to Java EE

Fast Track to Java EE Java Enterprise Edition is a powerful platform for building web applications. This platform offers all the advantages of developing in Java plus a comprehensive suite of server-side technologies. This

More information

The. Platform. Alexis Moussine-Pouchkine

The. Platform. Alexis Moussine-Pouchkine The Platform Alexis Moussine-Pouchkine Overall Presentation Goal Focus on the new features of Java EE 6 Write a web application Better if you know Java EE 5 This is no science fiction Java EE 6 and GlassFish

More information

EJB ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY. EJB Enterprise Java

EJB ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY. EJB Enterprise Java EJB Enterprise Java EJB Beans ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY Peter R. Egli 1/23 Contents 1. What is a bean? 2. Why EJB? 3. Evolution

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

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

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

OSGi in WebSphere : The Story so far

OSGi in WebSphere : The Story so far OSGi in WebSphere : The Story so far, IBM Hursley chris.wilkinson@uk.ibm.com Disclaimer IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at

More information

JBoss World 2009 Marius Bogoevici

JBoss World 2009 Marius Bogoevici 1 Spring on JBoss Marius Bogoevici Senior Software Engineer, Red Hat September 2 nd, 2009 2 About the presenter: Marius Bogoevici - mariusb@redhat.com Senior Software Engineer at Red Hat Lead for Snowdrop,

More information

IBM WebSphere Application Server 8. Java EE 6 Feature Packs

IBM WebSphere Application Server 8. Java EE 6 Feature Packs IBM WebSphere Application Server 8 EE 6 Feature Packs Thomas Bussière- bussiere@fr.ibm.com IT Architect Business Solution Center La Gaude, France Enabling Developers to Start With Open Source/Community

More information

Deployment. See Packaging and deployment processes

Deployment. See Packaging and deployment processes Index A Address instance, 85 Aggregate average response time (AART), 282 Application assembler, deployment roles external requirements conflict and redundant, 343 dependencies, 341 references, 341 342

More information

Chapter 1 Introducing EJB 1. What is Java EE Introduction to EJB...5 Need of EJB...6 Types of Enterprise Beans...7

Chapter 1 Introducing EJB 1. What is Java EE Introduction to EJB...5 Need of EJB...6 Types of Enterprise Beans...7 CONTENTS Chapter 1 Introducing EJB 1 What is Java EE 5...2 Java EE 5 Components... 2 Java EE 5 Clients... 4 Java EE 5 Containers...4 Introduction to EJB...5 Need of EJB...6 Types of Enterprise Beans...7

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

ISV Technical Executive Forum 2011

ISV Technical Executive Forum 2011 IBM Die Basis für (fast) Alles: Der neue WebSphere Application Server 8 Denis Ley, Client Technical Specialist WebSphere, IBM 7. November 2011 Schloß Sörgenloch Agenda Key aspects of WebSphere Application

More information

EJB 3.1 vs Contexts and Dependency Injection (CDI) and Dependency Injection for Java in Java EE 6. Jacek Laskowski.

EJB 3.1 vs Contexts and Dependency Injection (CDI) and Dependency Injection for Java in Java EE 6. Jacek Laskowski. EJB 3.1 vs Contexts and Dependency Injection (CDI) and Dependency Injection for Java in Java EE 6 Jacek Laskowski jacek@japila.pl Jacek Laskowski Blogger of http://blog.japila.pl Blogger of http://jaceklaskowski.pl

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

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

<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

The roots of Java EE 6

The roots of Java EE 6 on s Weld i s n e t x CDI E The roots of Java EE 6 Dan Allen Principal Software Engineer JBoss, by Red Hat Building on common ground 2 Weld JSR-299 Reference Implementation & TCK with support for Servlet

More information

JBoss Enterprise Application Platform 6.1

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

More information

CO Java EE 6: Develop Database Applications with JPA

CO Java EE 6: Develop Database Applications with JPA CO-77746 Java EE 6: Develop Database Applications with JPA Summary Duration 4 Days Audience Database Developers, Java EE Developers Level Professional Technology Java EE 6 Delivery Method Instructor-led

More information

Transactions and Transaction Managers

Transactions and Transaction Managers Transactions and Transaction Managers There are many transactional resources Databases Messaging middleware As programmers, we want abstract transactions: we do not want to deal with some transaction API

More information

ApplicationComposer. The TomEE Swiss Knife

ApplicationComposer. The TomEE Swiss Knife ApplicationComposer The TomEE Swiss Knife ApplicationComposer API is mainly contained in org.apache.openejb.testing package (historically, today we would have called the package org.apache.tomee.applicationcomposer).

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

INTRODUCTION TO COMPONENT DESIGN IN JAVA EE COMPONENT VS. OBJECT, JAVA EE JAVA EE DEMO. Tomas Cerny, Software Engineering, FEE, CTU in Prague,

INTRODUCTION TO COMPONENT DESIGN IN JAVA EE COMPONENT VS. OBJECT, JAVA EE JAVA EE DEMO. Tomas Cerny, Software Engineering, FEE, CTU in Prague, INTRODUCTION TO COMPONENT DESIGN IN JAVA EE COMPONENT VS. OBJECT, JAVA EE JAVA EE DEMO Tomas Cerny, Software Engineering, FEE, CTU in Prague, 2016 1 JAVA ZOOLOGY Java Standard Edition Java SE Basic types,

More information

JAX-RS. Sam Guinea

JAX-RS. Sam Guinea JAX-RS Sam Guinea guinea@elet.polimi.it http://servicetechnologies.wordpress.com/ JAX-RS Java API that provides support in creating services according to the REST architectural style. JAX-RS uses annotations

More information

Enterprise Java in 2012 and Beyond From Java EE 6 To Cloud Computing

Enterprise Java in 2012 and Beyond From Java EE 6 To Cloud Computing Enterprise Java in 2012 and Beyond From Java EE 6 To Cloud Computing Jürgen Höller, Principal Engineer, SpringSource 2012 SpringSource, A division of VMware. All rights reserved Deployment Platforms: Becoming

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

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

<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

Java Enterprise Edition

Java Enterprise Edition Java Enterprise Edition The Big Problem Enterprise Architecture: Critical, large-scale systems Performance Millions of requests per day Concurrency Thousands of users Transactions Large amounts of data

More information

Leverage Rational Application Developer v8 to develop Java EE6 application and test with WebSphere Application Server v8

Leverage Rational Application Developer v8 to develop Java EE6 application and test with WebSphere Application Server v8 Leverage Rational Application Developer v8 to develop Java EE6 application and test with WebSphere Application Server v8 Author: Ying Liu cdlliuy@cn.ibm.com Date: June 24, 2011 2011 IBM Corporation THE

More information

"Charting the Course... Mastering EJB 3.0 Applications. Course Summary

Charting the Course... Mastering EJB 3.0 Applications. Course Summary Course Summary Description Our training is technology centric. Although a specific application server product will be used throughout the course, the comprehensive labs and lessons geared towards teaching

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