ADF BC Und EJB/JPA Im Vergleich Hendrik Gossens

Total Page:16

File Type:pdf, Size:1020Kb

ADF BC Und EJB/JPA Im Vergleich Hendrik Gossens ADF Persistenzmechanismen ADF BC und EJB/JPA im Vergleich Hendrik Gossens Nürnberg,| 19.11.2013 MT AG GESCHÄFTSFORM INHABERGEFÜHRTE AG HAUPTSITZ RATINGEN GRÜNDUNGSJAHR 1994 BESCHÄFTIGTE 180 FESTANGESTELLTE MITARBEITER BETEILIGUNGEN MT-IFS GMBH (RATINGEN), MT-IFS SARL (LUXEMBURG) BUSINESS SOCIAL BUSINESS MOBILE INTELLIGENCE SOLUTIONS SOLUTIONS SOLUTIONS APPLICATION INTEGRATION IT SYSTEM DEVELOPMENT SERVICES SERVICES business by integration | Agenda 1. Objektrelationales Mapping (ORM) 2. ADF Business Components (ADFbc) 3. Enterprise Java Beans (EJB) und Java Persistence API (JPA) 4. Showcase 5. Gegenüberstellung der Konzepte 3 | ADF BC und EJB/JPA im Vergleich Objektrelationales Mapping (ORM) ° Überführung von (Java-)Objekten in Datenbankstrukturen und umgekehrt - OOP-Sprachen kapseln Daten und Verhalten in Objekten - Relationale Datenbank speichern Daten in Tabellen => Object-relational Impedance Mismatch ° Einsatz von Frameworks wie ADFbc oder EJB/JPA empfehlenswert Department - Struktur - Identität departmentId: Long - Datenkapselung departmentName: String - Datentypen - Arbeitsweise … -… 4 | ADF BC und EJB/JPA im Vergleich ADF Schichtenarchitekur 5 | ADF BC und EJB/JPA im Vergleich ADF Business Components ° „Standard“-Persistenz-Framework von ADF ° Objektrelationales Mapping ° Transaktion und Locking ° Möglichkeiten der Manipulation ähnlich zu Forms (doDML, before lock, …) ° LOVs auf Attributen ° Wesentliche Komponenten • Entity Objects • View Objects • Assoziationen • View Links • Application Modules 6 | ADF BC und EJB/JPA im Vergleich Konzeptuelle Sicht auf ADFbc Quelle: Oracle ADF Fundamentals Schulung 7 | ADF BC und EJB/JPA im Vergleich Gründe für ADF BC ° Gute Integration mit JDeveloper ° Gute Integration mit Oracle Datenbank ° Metadatengetrieben (XML) ° Deklarative Herangehensweise ° Einfach zu erlernen für Umsteiger aus der „alten“ Oracle-Welt ° Wiederverwendbarkeit bestehender SQL-Kenntnisse (z.B. bei View Criterias) ° Java Implementierung anpassbar (Vererbung, Hook Points, …) ° Gute Skalierbarkeit ° Standardweg für ADF-Applikationen ° Gute Testbarkeit durch Business Components Tester 8 | ADF BC und EJB/JPA im Vergleich Java Persistence API (JPA) ° Schnittstelle um relationale Daten in Java-Applikationen zu verwalten ° Objektrelationales Mapping ° Leichtgewichtig ° Industrie-„Standard“ ° Vielfältige Persistence Provider (BatooJPA, EclipseLink, Hibernate, OpenJPA, …) ° EclipseLink (früher Oracle TopLink) Referenzimplementierung von JPA 2.0 ° Plain Old Java Objects (POJO) ° Nutzung von JPA ist nicht auf Enterprise Java Beans (EJB) beschränkt - JPA ist Untermenge von EJB3, Implementierung bereitgestellt durch „Persistence Provider“ - EJB Implementierung bereitgestellt durch EJB Container des Application Servers ° Konfigurierbar via Annotations und/oder XML 9 | ADF BC und EJB/JPA im Vergleich Konzeptuelle Sicht auf JPA Persistence erzeugt konfiguriert durch Persistence PersistenceUnit EntityManager Unit Factory erzeugt find() persist() merge() Persistence verwaltet EntityManager remove() Entity Context 10 | ADF BC und EJB/JPA im Vergleich PersistenceUnit - Ausschnitt persistence.xml 11 | ADF BC und EJB/JPA im Vergleich persistence.xml – JDeveloper-Tooling (11g) 12 | ADF BC und EJB/JPA im Vergleich Beispiel JPA 13 | ADF BC und EJB/JPA im Vergleich Wichtige Begrifflichkeiten im EJB-Umfeld Session Beans Entity Beans (@Entity) Container- Bean- singleton stateless stateful managed managed persistence persistence Message-Driven Beans EJB 3.1 14 | ADF BC und EJB/JPA im Vergleich Konzeptuelle Sicht auf EJB SessionBean EntityManager (Service) find() persist() merge() remove() persistence.xml … DataSource „Entity Bean“ @Entity Department @Id departmentId: Long departmentName: String … 15 | ADF BC und EJB/JPA im Vergleich Gründe für JPA/EJB ° Einfach erlernbar ° Breite Anzahl an Java Entwicklern ° Gute Dokumentation und Hilfestellung durch Java Community ° Datenbankunabhängig ° Offener Standard => verringert Gefahr des „Vendor Lock-In“ ° Geringer Konfigurationsaufwand ° Eigene, SQL-ähnliche Abfragesprache (JPQL) + named queries ° Criteria Queries ° Multitenant Entities ° Breite Toolunterstützung (JDeveloper, Eclipse, NetBeans, …) ° Plain Old Java Objects (POJO) => Jede Java-Klasse persistierbar ° Gute Testbarkeit, z.B. mit Hilfe von JUnit ° Metadatengetrieben (XML oder Annotations) 16 | ADF BC und EJB/JPA im Vergleich JPA in ADF ° Verschiedene Möglichkeiten - ADF EJB DataControl => EJB und JPA ° Criteria Support ° Create/Merge/Delete Entities ° Transaktionsunterstützung - ADF Java DataControl => Java Facade und JPA ° Transaktionsunterstützung (Operations) ° Criteria Support ° Create/Merge/Delete Entities ° Model-Tester (via DataControl.dcx) - … 17 | ADF BC und EJB/JPA im Vergleich EJB in ADF Zu implementierende EJB Funktionalität ° Typischerweise getter pro named query ° queryByRange(String jpqlStmt, int firstResult, int maxResults) - Wenn diese Methode implementiert ist, dann nutzt DataControl diese statt der getter-Methode ° Transaktionssteuerung ° public boolean isTransactionDirty() ° public void rollbackTransaction() ° public void commitTransaction() 18 | ADF BC und EJB/JPA im Vergleich EJB in ADF Optionen im Transaktionsverhalten Session Bean singleton stateless stateful Bean-Managed Transaction Implizites commit Explizites commit Container-Managed Transaction Implizites commit Explizites commit EJB Container Showcase | Gegenüberstellung ADF BC und EJB/JPA ADFbc EJB/JPA bc4j.xcfg persistence.xml EJB Session Bean Application Module Java Service Facade View Objects Named Queries Entity Objects Entities 21 | ADF BC und EJB/JPA im Vergleich Zusammenfassung ° ADF unterstützt viele Möglichkeiten um ORM zu realisieren ° Ähnliche Konzepte von ADF BC und JPA ° JDeveloper unterstützt beide Persistenz-Frameworks gut (Editoren, …) ° Abstraktion und Austauschbarkeit über DataControls ° Auswahl u.a. abhängig vom Vorwissen der Entwickler ° ADF BC eher für Umsteiger aus der „Oracle“-Welt ° JPA hat bei Java-Entwicklern oft höhere Akzeptanz ° ADF BC deklarativer, JPA etwas mehr Programmieraufwand ° ADF BC Integration in JDeveloper besser als EJB/JPA ° Bei bestehendem Oracle Datenmodell: Erfahrungsgemäß besser ADF BC ⇒ Sonst ggf. JPQL-Queries mit Oracle-Spezifika notwendig ° Hoher Aufwand ° Vorteile von JPA gehen verloren 22 | ADF BC und EJB/JPA im Vergleich Quellen ° http://docs.oracle.com/html/E24396_01/ejb3_overview_arch.html ° Oracle ADF Fundamentals Schulung 11g ° Update/Insert With JPA and EJB using ADF (Shay Schmelzer) http://www.youtube.com/watch?v=VyPOhmWD5Y0 ° http://docs.oracle.com/cd/E28280_01/web.1111/b31974/bcquerying.htm ° http://openejb.apache.org/jpa-concepts.html ° http://docs.oracle.com/middleware/1212/adf/ADFDC/ejb.htm ° http://docs.oracle.com/cd/E37547_01/tutorials/tut_jpa_app/tut_jpa_ejb.html ° http://www.oracle.com/technetwork/developer-tools/jdev/documentation/1212-nf- 1964675.html ° http://docs.oracle.com/middleware/1212/adf/ADFDC/ejb.htm#CHDEEAIH 23 | ADF BC und EJB/JPA im Vergleich Vorträge auf der ADF BC und EJB/JPA im Vergleich ADF Persistenz-Frameworks im Vergleich – JPA/EJB Hendrik Gossens, Di, 11 Uhr vs. ADF BC Continuous Integration für Oracle DB und Apex Peter Busch, Dominic Ketteltasche, Di, 12 Uhr Mein Backup – die richtige Strategie oder der totale Volker Mach, Di 16 Uhr Irrweg? Das APEX QS-Plugin Oliver Lemm, Mi, 12 Uhr Forms goes APEX – wie man es richtig macht Niels de Bruijn, Sven-Olaf Kelbert, Mi 15 Uhr USABLE_FILE_MB im Oracle ASM oder wenn der Ernst Leber, Mi, 16 Uhr nutzbare Plattenplatz negativ wird Erstellen einer mobilen Applikation mit PhoneGap Wolfgang Nast, Do, 9 Uhr und ADF Mobile Experten-Panel: APEX und DB-Programmierung Niels de Bruijn, Do, 11 Uhr Java Unterstützung von Multithreading in den Wolfgang Nast, Do, 12 Uhr Versionen 1.0 bis 7 3 Wochenenden Strohwitwer Christof Kaller, Do, 12 Uhr business by integration | Treffen der Deutschen ADF Community Wann Dienstag, 19. Nov., 14.00 – 14.45 Uhr Wo Warum Neuigkeiten zu Oracle ADF erfahren Raum Sydney Mit Product Managern und Experten sprechen Networking und ... | Deutsche Oracle ADF Community • Oracle ADF Community auf XING • Twitter: @ADFCommunityDE • ADF Spotlight : 30-minütige Web Seminare an jedem 2. Freitag • ADF Project Sessions : Serie von eintägigen Workshops • Regelmäßige Treffen mit Fachvorträgen und Diskussionen • Zusammenarbeit mit der DOAG (Jahreskonferenz, SIG) • DOAG Barcamp und ADF Hacker‘s Event (30./31. Januar 2014) Werden Sie Teil unserer Community! | Vielen Dank. MT AG Balcke-Dürr-Allee 9 40882 Ratingen Telefon: +49 (0) 21 02 309 61-0 Telefax: +49 (0) 21 02 309 61-101 E-Mail: [email protected] www.mt-ag.com|.
Recommended publications
  • Oracle Application Server 10G R3 (10.1.3.1) New Features Overview
    Oracle Application Server 10g R3 (10.1.3.1) New Features Overview An Oracle White Paper October 2006 Oracle Application Server 10gR3 New Features Overview 1.0 Introduction................................................................................................. 4 2.0 Standards Support: J2EE Infrastructure ................................................. 5 2.1 Presentation Tier – Java Server Pages and JavaServer Faces........... 6 2.2 Business Tier – Enterprise Java Beans................................................ 7 2.3 Persistence - TopLink............................................................................ 8 2.3.1 Oracle TopLink............................................................................... 8 2.3.2 EJB 3.0 Persistence......................................................................... 9 2.3.3 Object-XML.................................................................................... 9 2.4 Data Sources and Transactions ............................................................ 9 2.4.1 Data Sources.................................................................................... 9 2.4.2 Transactions................................................................................... 10 2.5 Java 2 Connector Architecture ........................................................... 10 2.6 Security................................................................................................... 11 2.6.1 Core Container.............................................................................
    [Show full text]
  • Oracle® Toplink Release Notes Release 12C (12.1.2)
    Oracle® TopLink Release Notes Release 12c (12.1.2) E40213-01 June 2013 This chapter describes issues associated with Oracle TopLink. It includes the following topics: ■ Section 1, "TopLink Object-Relational Issues" ■ Section 2, "Oracle Database Extensions with TopLink" ■ Section 3, "Allowing Zero Value Primary Keys" ■ Section 4, "Managed Servers on Sybase with JCA Oracle Database Service" ■ Section 5, "Logging Configuration with EclipseLink Using Container Managed JPA" ■ Section 6, "Documentation Accessibility" 1 TopLink Object-Relational Issues This section contains information on the following issues: ■ Section 1.1, "Cannot set EclipseLink log level in WLS System MBean Browser" ■ Section 1.2, "UnitOfWork.release() not Supported with External Transaction Control" ■ Section 1.3, "Returning Policy for UPDATE with Optimistic Locking" ■ Section 1.4, "JDBC Drivers returning Timestamps as Strings" ■ Section 1.5, "Unit of Work does not add Deleted Objects to Change Set" 1.1 Cannot set EclipseLink log level in WLS System MBean Browser Use Oracle Enterprise Manager to set the EclipseLink log level; do not use the WLS System MBean Browser to complete this action. 1.2 UnitOfWork.release() not Supported with External Transaction Control A unit of work synchronized with a Java Transaction API (JTA) will throw an exception if it is released. If the current transaction requires its changes to not be persisted, the JTA transaction must be rolled back. When in a container-demarcated transaction, call setRollbackOnly() on the EJB/session context: @Stateless public class MySessionBean { @Resource SessionContext sc; public void someMethod() { ... 1 sc.setRollbackOnly(); } } When in a bean-demarcated transaction then you call rollback() on the UserTransaction obtained from the EJB/session context: @Stateless @TransactionManagement(TransactionManagementType.BEAN) public class MySessionBean implements SomeInterface { @Resource SessionContext sc; public void someMethod() { sc.getUserTransaction().begin(); ..
    [Show full text]
  • 1 Shounak Roychowdhury, Ph.D
    Shounak Roychowdhury, Ph.D. 10213 Prism Dr., Austin, TX, 78726 || 650-504-8365 || email: [email protected] Profile • Software development and research experience at Oracle and LG Electronics. • Deep understanding of data science methods: machine learning; probability and statistics. • 5 US patents and 40+ peer reviewed publications in international conferences and top refereed journals Research Interests • Published research papers on computational intelligence, neural networks and fuzzy theory, numerical optimization, and natural language processing, and information theory. Education • Ph.D. (Computer Engineering), University of Texas at Austin, Austin, TX, (Dec. 2013) o Dissertation: A Mixed Approach to Spectrum-based Fault Localization Using Information Theoretic Foundations. (Machine Learning in Software Engineering) • M.S. (Computer Science), University of Tulsa, Tulsa, OK, (May 1997) o Thesis: Encoding and Decoding of Fuzzy Rules Patents • Chaos washing systems and a method of washing thereof (US Patent #5,560,230) • System and method for generating fuzzy decision trees (US Patent #7,197,504) • Method for extracting association rules from transactions in a database (U.S. Patent # 7,370,033) • Expediting K-means cluster analysis data mining using subsample elimination preprocessing (U.S. Patent # 8,229,876) • Bayes-like classifier with fuzzy likelihood (U.S. Patent # 8,229,875) Computer Languages • Python, Java, C/C++, MATLAB, R, SQL, PL/SQL, Perl, Ruby, Tcl/Tk Teaching Experience Adjunct Faculty Texas State University 2017- Present Professional Experience Hewlett Packard Enterprise, Austin, TX (Oct 2018 - present) Expert Technologist • Executed software development processes for composable rack team of HPE’s OneView cloud management system. • Developed a Python-based system to test the scalability of OneView connections across multiple layers of Plexxi switches.
    [Show full text]
  • Oracle Glassfish Server Application Development Guide Release 3.1.2 E24930-01
    Oracle GlassFish Server Application Development Guide Release 3.1.2 E24930-01 February 2012 This Application Development Guide describes how to create and run Java Platform, Enterprise Edition (Java EE platform) applications that follow the open Java standards model for Java EE components and APIs in the Oracle GlassFish Server environment. Topics include developer tools, security, and debugging. This book is intended for use by software developers who create, assemble, and deploy Java EE applications using Oracle servers and software. Oracle GlassFish Server Application Development Guide, Release 3.1.2 E24930-01 Copyright © 2012, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations.
    [Show full text]
  • Oracle® Fusion Middleware Solutions Guide for Oracle Toplink 12C (12.1.2) E28610-02
    Oracle® Fusion Middleware Solutions Guide for Oracle TopLink 12c (12.1.2) E28610-02 August 2013 This document describes a number of scenarios, or use cases, that illustrate TopLink features and typical TopLink development processes. Oracle Fusion Middleware Solutions Guide for Oracle TopLink, 12c (12.1.2) E28610-02 Copyright © 2013, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007).
    [Show full text]
  • Oracle Application Server Toplink Getting Started Guide, 10G Release 2 (10.1.2) Part No
    Oracle® Application Server TopLink Getting Started Guide 10g Release 2 (10.1.2) Part No. B15902-01 April 2005 Oracle Application Server TopLink Getting Started Guide, 10g Release 2 (10.1.2) Part No. B15902-01 Copyright © 2000, 2005 Oracle. All rights reserved. Primary Author: Jacques-Antoine Dubé Contributing Authors: Rick Sapir, Arun Kuzhimattathil, Janelle Simmons, Madhubala Mahabaleshwar, Preeti Shukla The Programs (which include both the software and documentation) contain proprietary information; they are provided under a license agreement containing restrictions on use and disclosure and are also protected by copyright, patent, and other intellectual and industrial property laws. Reverse engineering, disassembly, or decompilation of the Programs, except to the extent required to obtain interoperability with other independently created software or as specified by law, is prohibited. The information contained in this document is subject to change without notice. If you find any problems in the documentation, please report them to us in writing. This document is not warranted to be error-free. Except as may be expressly permitted in your license agreement for these Programs, no part of these Programs may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose. If the Programs are delivered to the United States Government or anyone licensing or using the Programs on behalf of the United States Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations.
    [Show full text]
  • [1 ] Oracle Glassfish Server
    Oracle[1] GlassFish Server Release Notes Release 3.1.2 and 3.1.2.2 E24939-10 April 2015 These Release Notes provide late-breaking information about GlassFish Server 3.1.2 and 3.1.2.2 software and documentation. These Release Notes include summaries of supported hardware, operating environments, and JDK and JDBC/RDBMS requirements. Also included are a summary of new product features in the 3.1.2 and 3.1.2.2 releases, and descriptions and workarounds for known issues and limitations. Oracle GlassFish Server Release Notes, Release 3.1.2 and 3.1.2.2 E24939-10 Copyright © 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S.
    [Show full text]
  • Oracle9ias Toplink Getting Started Guide
    b10061.book Page i Wednesday, September 4, 2002 1:20 PM Oracle9iAS TopLink Getting Started Release 2 (9.0.3) August 2002 Part No. B10061-01 b10061.book Page ii Wednesday, September 4, 2002 1:20 PM Oracle9iAS TopLink Getting Started, Release 2 (9.0.3) Part No. B10061-01 Copyright © 2002, Oracle Corporation. All rights reserved. The Programs (which include both the software and documentation) contain proprietary information of Oracle Corporation; they are provided under a license agreement containing restrictions on use and disclosure and are also protected by copyright, patent and other intellectual and industrial property laws. Reverse engineering, disassembly or decompilation of the Programs, except to the extent required to obtain interoperability with other independently created software or as specified by law, is prohibited. The information contained in this document is subject to change without notice. If you find any problems in the documentation, please report them to us in writing. Oracle Corporation does not warrant that this document is error-free. Except as may be expressly permitted in your license agreement for these Programs, no part of these Programs may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without the express written permission of Oracle Corporation. If the Programs are delivered to the U.S. Government or anyone licensing or using the programs on behalf of the U.S. Government, the following notice is applicable: Restricted Rights Notice Programs delivered subject to the DOD FAR Supplement are "commercial computer software" and use, duplication, and disclosure of the Programs, including documentation, shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement.
    [Show full text]
  • Oracle® Fusion Middleware Solution Guide for Oracle Toplink 11G Release 1 (11.1.1) E25034-02
    Oracle® Fusion Middleware Solution Guide for Oracle TopLink 11g Release 1 (11.1.1) E25034-02 March 2012 This document describes a number of scenarios, or use cases, that illustrate TopLink features and typical TopLink development processes. Oracle Fusion Middleware Solution Guide for Oracle TopLink, 11g Release 1 (11.1.1) E25034-02 Copyright © 1997, 2012 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007).
    [Show full text]
  • Using Maven with Oracle Toplink
    Using Maven with Oracle TopLink An Oracle White Paper July 2013 Using Maven with Oracle TopLink 12.1.2 Using Maven with Oracle TopLink Introduction ....................................................................................... 1 Installation ......................................................................................... 2 Install oracle-maven-sync .............................................................. 2 Using Maven ..................................................................................... 3 TopLink JAXB and JSON .............................................................. 4 TopLink JPA .................................................................................. 4 TopLink Data Services................................................................... 5 TopLink and Coherence ................................................................ 6 Using Maven with Oracle TopLink Introduction Maven is one of the most popular build management systems and with the 12.1.2 release TopLink includes POM files for all jars as well as a utility to install them into your Maven repository. This document describes how to install TopLink into your Maven repository, the Maven coordinates for all TopLink jars, and which dependencies are required for different usage scenarios including Java SE, Java EE in WebLogic, and using TopLink with Oracle Coherence. 1 Using Maven with Oracle TopLink Installation Like other Oracle Fusion Middleware components, TopLink 12.1.2 provides support for developing with Maven by providing
    [Show full text]
  • Oracle Weblogic Server
    ORACLE DATA SHEET ORACLE WEBLOGIC SERVER KEY FEATURES AND BENEFITS Oracle WebLogic Server is the #1 application server for developing and deploying applications across cloud environments, engineered systems, and ORACLE WEBLOGIC SERVER STANDARD EDITION conventional systems. Oracle WebLogic Server offers application developers • Java EE 6 full platform support modern development tooling and advanced APIs for application innovation. It plus selected Java EE 7 APIs • Java SE 6 and 7 certification provides a mission critical cloud platform for applications requiring high • Oracle Java SE Support • ZIP distribution for performance, scalability and reliability. Powerful, integrated management tools development • Oracle TopLink simplify operations and reduce management costs. Finally, Oracle WebLogic • Choice of IDEs: Oracle Enterprise Pack for Eclipse, Server provides the foundation for the Oracle Fusion Middleware portfolio of Oracle JDeveloper, Oracle NetBeans IDE products. Oracle WebLogic Server is available in three editions with • Maven plug-ins, POMs, and archetypes increasing functionality. • Support for rich client applications – REST, JSON, WebSocket, Server-Sent Oracle WebLogic Server Standard Edition includes Oracle TopLink, Oracle Events and TopLink Data Services Application Development Framework, Oracle Web Tier and the core Oracle • Classloader Analysis Tool to detect/resolve class conflicts WebLogic Server. Full Java Enterprise Edition support is included along with • Oracle Application Development Framework development features
    [Show full text]
  • Oracle Glassfish Server Upgrade Guide Release 3.1.2 E24942-01
    Oracle GlassFish Server Upgrade Guide Release 3.1.2 E24942-01 February 2012 This guide explains how to upgrade to Oracle GlassFish Server 3.1.2 from previous GlassFish Server and Sun GlassFish Enterprise Server product releases. Also included in this guide are instructions for upgrading configuration data and Java EE applications from binary-compatible earlier versions of this software to work with Oracle GlassFish Server 3.1.2. Finally, this guide describes compatibility issues that affect data and applications that are to be migrated. Oracle GlassFish Server Upgrade Guide, Release 3.1.2 E24942-01 Copyright © 2012, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S.
    [Show full text]