EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings
< EclipseLink | UserGuide | JPA | Basic JPA Development | Mapping
EclipseLink JPA
EclipseLink | |
Website | |
Download | |
Community | |
Mailing List • Forums • IRC • mattermost | |
Issues | |
Open • Help Wanted • Bug Day | |
Contribute | |
Browse Source |
Key API
Native API
Basic Mappings
Simple Java types are mapped as part of the immediate state of an entity in its fields or properties. Mappings of simple Java types are called basic mappings.
By default, EclipseLink persistence provider automatically configures a basic mapping for simple types.
Use the following annotations to fine-tune how your database implements these mappings:
For all mapping types there are a common set of options:
- Read-Only: Specifies that the mapping should populate the value on read and copy. Required when multiple mappings share the same database column.
- Converters: Allows custom data types and data conversions to be used with most mapping types
- Annotations: @Converter, @TypeConverter, @ObjectTypeConverter, @StructConverter, @Convert
- XML: <converter>, <type-converter>, <object-type-converter>, <struct-converter>, <convert>
See Default Conversions and Converters for details.