Oracle TopLink

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found.

Oracle TopLink is mapping and persistence framework for Java (programming language) developers. TopLink is produced by Oracle and is a part of Oracle's OracleAS, WebLogic, and OC4J servers.[1] It is an object-persistence and object-transformation framework. TopLink provides development tools and run-time functionalities that ease the development process and help increase functionality. Persistent object-oriented data is stored in relational databases which helps build high-performance applications. Storing data in either XML (Extensible Markup Language) or relational databases is made possible by transforming it from object-oriented data.

A rich user-interface is possible on TopLink with the help of TopLink Mapping Workbench. This Mapping Workbench makes it possible to carry out the following with ease.

  • Graphical mapping of an object model to data model.
  • Generation of data model from its object model and vice versa.
  • Auto-mapping of any existing data models and object models.

Oracle's JDeveloper IDE provides easy integration of these functionalities provided by the Mapping Workbench.

With the use of TopLink, users can stay more focused on their primary cause and let TopLink handle the integration of persistence and object transformation into their application. Designing, implementing and deploying process is accelerated as TopLink supports a variety of data sources and formats such as Relational database, Object-relational database, Enterprise information system (EIS), XML and many others.

Oracle TopLink
Developer(s) Oracle Corporation
Stable release Oracle TopLink 12c (12.1.3)
Written in Java
Operating system Cross-platform
Platform Java Virtual Machine
License Oracle License
Website www.oracle.com/technetwork/middleware/toplink/overview/index.html

History

Toplink was originally developed by The Object people in Smalltalk.[2] It was ported to Java in 1996-1998 and called "TopLink for Java". In 2002,TopLink was acquired by Oracle Corporation and was developed under the Oracle Fusion Middleware product. The TopLink code was donated to the Eclipse Foundation and the EclipseLink project was born in 2007.[1] The EclipseLink now provides the functionality of TopLink. Sun Microsystems selected EclipseLink in March 2008, as the implementation for the JPA 2.0, JSR 317 reference.[2] A number of versions of TopLink have been released since and the latest version 12c (12.1.3) is available for free Download.[3]

Key Features

  • Rapidly build high-performance enterprise applications that are scalable and maintainable.
  • Extensive mapping support using relational, object-relational data type and XML.
  • Advanced query capability including native SQL, Java Persistence Query Language (JPQL) and EclipseLink Expressions framework.
  • RESTful Services
  • Just-in-time reading.
  • Tenant Isolation
  • NoSQL
  • Various Optimistic and pessimistic locking policies and options.
  • JSON
  • Integration with commonly used application servers and databases.
  • External Metadata Sources
  • TopLink Grid.[1]

Key Components

EclipseLink Core and API

The runtime component of TopLink is provided by the EclipseLink Core. This API provides direct access to the runtime, which is embedded into the application. Persistence behavior is enabled by making application calls that invoke EclipseLink API to perform these functionalities which provides safe access to shared databases.[4]

Import the following class to use extended functionality of EclipseLink.

org.eclipse.persistence.*

Object-Relational(JPA 2.0) Component

The binding of Java classes to XML schemas is possible with the help of Object-XML, which is an EclipseLink component. By implementing JAXB, mapping information is provided through annotations. It also provides manipulation of XML.[4]

SDO Component

The Service Data Objects (SDO) provides with the use of SDO API, use dynamic objects to customize and manipulate XML, use of static data objects and conversion of XML Schema.[4]

Database Web Services Component

Database Web Services (DBWS) facilitates access to relational databases with the help of web service. A database access can be made without the need to write a Java code. The XML SOAP Messages and the databases are connected by the runtime component of DBWS which uses EclipseLink.[4]

TopLink Grid

TopLink Grid is an integration mechanism that provides connection between Oracle Coherence and EclipseLink. An application generally interacts with the relational database, which is its primary database. But with TopLink the application can store data on the Coherence grid called as JPA on the grid.[5]

TopLink Grid functionality can be used only if the user has license for Oracle Coherence. This functionality is provided by:

toplink-grid.jar

To get support for TopLink Grid and EclipseLink, users also need to import the following package of classes.

org.eclipse.coherence.*

TopLink Operations (Insert, Update, Delete)

Database operations like Insert, Update and Delete can also be performed in TopLink. The changes made to the database are reflected in the Oracle Coherence cache. In Java Persistence API, an entity is a persistence class.Using TopLink, a number of performance features for writing large amounts of data can be implemented. Batch writing, stored procedure support, parameter binding, statement ordering and other features are offered to satisfy database constraints.

The basic operations are

Insert

The EntityManager method persist(Object entity) is used to add an instance and marks it for insertion into the database.

entityManager.getTransaction().begin(); 
Employee newEmployee = new Employee(5); 
entityManager.persist(newEmployee); 
entityManager.getTransaction().commit();

On completion of the transaction, the newEmployee data will be inserted into the database.[6]

Update

Updating an entity means simply reading the transaction and updating the properties of this entity. Updating the Employee LastName can be done as follows.[6]

entityManager.getTransaction().begin(); 
Employee existingEmployee = entityManager.find(Employee.class, 5); 
existingEmployee.setLastName("NewLastName"); 
entityManager.getTransaction().commit();

Delete

Deleting an entity is the opposite of Insertion and can be one using remove(Object entity) method of the EntityManager.

entityManager.getTransaction().begin(); 
Employee existingEmployee = entityManager.find(Employee.class, 5); 
entityManager.remove(existingEmployee); 
entityManager.getTransaction().commit();

The EntityManager method flush() deletes the entity on completion of the transaction.[6]

Development Tools

Users can use most of the tools in the market and use TopLink along with it. But the following toots provide special integration with TopLink.

Supported Database Platforms

Database Java Class
Apache Derby org.eclipse.persistence.platform.database.DerbyPlatform
Attunity org.eclipse.persistence.platform.database.AttunityPlatform
dBASE org.eclipse.persistence.platform.database.DBasePlatform
Firebird org.eclipse.persistence.platform.database.FirebirdPlatform
H2 org.eclipse.persistence.platform.database.H2Platform
HyperSQLDatabase(HSQL) org.eclipse.persistence.platform.database.HSQLPlatform
IBM Cloudscape org.eclipse.persistence.platform.database.CloudscapePlateform
IBM DB2 Mainframe org.eclipse.persistence.platform.database.DB2MainframePlatform
Microsoft Access org.eclipse.persistence.platform.database.AccessPlatformPlatform
Microsoft SQLServer org.eclipse.persistence.platform.database.SQLServerPlatform
MySQL org.eclipse.persistence.platform.database.MySQLPlatform

See also

References

  1. 1.0 1.1 1.2 Lua error in package.lua at line 80: module 'strict' not found.
  2. 2.0 2.1 Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. 4.0 4.1 4.2 4.3 Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. 6.0 6.1 6.2 Lua error in package.lua at line 80: module 'strict' not found.

Lua error in package.lua at line 80: module 'strict' not found.