Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/JPA/Migration/OpenJPA"

(New page: == How To Migrate from OpenJPA to EclipseLink JPA == === Persistence Unit Properties === {|{{BMTableStyle}} |-{{BMTHStyle}} ! OpenJPA Property ! Description ! EclipseLink JPA Equivalent...)
 
Line 84: Line 84:
 
| openjpa.LockTimeout ||  ||
 
| openjpa.LockTimeout ||  ||
 
|-
 
|-
| openjpa.Log ||  ||
+
| openjpa.Log || Possible values: openjpa, commons, log4j, none || [[Using_EclipseLink_JPA_Extensions_(ELUG)#Using_EclipseLink_JPA_Extensions_for_Logging | eclipselink.logging.logger]] with values DefaultLogger, JavaLogger, ServerLogger, or custom
 
|-
 
|-
 
| openjpa.ManagedRuntime ||  ||
 
| openjpa.ManagedRuntime ||  ||

Revision as of 16:57, 12 November 2008

How To Migrate from OpenJPA to EclipseLink JPA

Persistence Unit Properties

OpenJPA Property Description EclipseLink JPA Equivalent
openjpa.AutoClear
openjpa.AutoDetach
openjpa.BrokerFactory
openjpa.BrokerImpl
openjpa.ClassResolver
openjpa.Compatibility
openjpa.ConnectionDriverName
openjpa.Connection2DriverName
openjpa.ConnectionFactory
openjpa.ConnectionFactory2
openjpa.ConnectionFactoryName
openjpa.ConnectionFactory2Name
openjpa.ConnectionFactoryMode
openjpa.ConnectionFactoryProperties
openjpa.ConnectionFactory2Properties
openjpa.ConnectionPassword
openjpa.Connection2Password
openjpa.ConnectionProperties
openjpa.Connection2Properties
openjpa.ConnectionURL
openjpa.Connection2URL
openjpa.ConnectionUserName
openjpa.Connection2UserName
openjpa.ConnectionRetainMode
openjpa.DataCache
openjpa.DataCacheManager
openjpa.DataCacheTimeout
openjpa.DetachState
openjpa.DynamicDataStructs
openjpa.FetchBatchSize
openjpa.FetchGroups
openjpa.FlushBeforeQueries
openjpa.IgnoreChanges
openjpa.Id
openjpa.InverseManager
openjpa.LockManager
openjpa.LockTimeout
openjpa.Log Possible values: openjpa, commons, log4j, none eclipselink.logging.logger with values DefaultLogger, JavaLogger, ServerLogger, or custom
openjpa.ManagedRuntime
openjpa.Mapping
openjpa.MaxFetchDepth
openjpa.MetaDataFactory
openjpa.Multithreaded
openjpa.Optimistic
openjpa.OrphanedKeyAction
openjpa.NontransactionalRead
openjpa.NontransactionalWrite
openjpa.ProxyManager
openjpa.QueryCache
openjpa.QueryCompilationCache
openjpa.ReadLockLevel
openjpa.RemoteCommitProvider
openjpa.RestoreState
openjpa.RetainState
openjpa.RetryClassRegistration
openjpa.SavepointManager
openjpa.Sequence
openjpa.TransactionMode
openjpa.WriteLockLevel

Back to the top