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 "Dali New And Noteworthy"

 
(M1 Iteration 1: New and Noteworth)
Line 1: Line 1:
 +
==Pre-milestone functionality==
 +
*Supported Annotations (configurable through UI)
 +
**Basic
 +
**Column
 +
**Embeddable
 +
**Embedded
 +
**Entity
 +
**GeneratedValue
 +
**Id
 +
**JoinColumn
 +
**ManyToOne
 +
**MappedSuperclass
 +
**OneToMany
 +
**OneToOne
 +
**Table
 +
**TableGenerator
 +
**Transient
 +
*Entity Defaults assistance
 +
**Ability to see what the default selection is for a given value
 +
*Entity Validation
 +
**Entity compliance problems(example - No Id defined)
 +
**Defaults based problems(example - default column name is not on the table defined by the entity)
 +
 +
 
==M1 Iteration 1: New and Noteworth==
 
==M1 Iteration 1: New and Noteworth==
 
*Basic support for ManyToMany mapping - does not support multiple JoinColumns
 
*Basic support for ManyToMany mapping - does not support multiple JoinColumns

Revision as of 19:17, 17 February 2006

Pre-milestone functionality

  • Supported Annotations (configurable through UI)
    • Basic
    • Column
    • Embeddable
    • Embedded
    • Entity
    • GeneratedValue
    • Id
    • JoinColumn
    • ManyToOne
    • MappedSuperclass
    • OneToMany
    • OneToOne
    • Table
    • TableGenerator
    • Transient
  • Entity Defaults assistance
    • Ability to see what the default selection is for a given value
  • Entity Validation
    • Entity compliance problems(example - No Id defined)
    • Defaults based problems(example - default column name is not on the table defined by the entity)


M1 Iteration 1: New and Noteworth

  • Basic support for ManyToMany mapping - does not support multiple JoinColumns
  • Support for SequenceGenerator and TableGenerator
  • Support for Version annotation
  • Support for AttributeOverrides in Entities and Embeddeds
  • Utilization of Generics information in mapping info
  • Ability to specify any DB Schema to map to from your chosen connection
  • Unified on the PFD version of the spec (with exception of a name change for GeneratorType to GenerationType; this will be fixed in an early M1I2 build)
    • Among other things, this accounts for the removal of AccessType from the annotation based definition- AccessType is now determined by where applicable annotations are placed.
  • String based OrderBy support

Back to the top