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/Indigo/DaliQuickFixes"

< Dali‎ | Indigo
(Quick Assists)
(Quick Fixes)
Line 1: Line 1:
 
=Quick Fixes=
 
=Quick Fixes=
 
+
Can you turn off quick assists/quick fixes?
  
  
Line 19: Line 19:
 
*Create the corresponding relationship mapping (mappedBy has invalid mapping type for this relationship)
 
*Create the corresponding relationship mapping (mappedBy has invalid mapping type for this relationship)
 
*Insert @Column for unresolved default column a basic mapping
 
*Insert @Column for unresolved default column a basic mapping
 
 
  
 
=Quick Assists=
 
=Quick Assists=
 
*Make a Java class an Entity/Embeddable/MappedSuperclass by adding @Entity or adding it to an existing orm.xml file or creating a new one.
 
*Make a Java class an Entity/Embeddable/MappedSuperclass by adding @Entity or adding it to an existing orm.xml file or creating a new one.

Revision as of 15:17, 14 June 2010

Quick Fixes

Can you turn off quick assists/quick fixes?


Project

  • Create or specify connection
  • Connect to DB (Connection is not active)
  • Create a persistence.xml (no persistence.xml file found in project)

Types

  • Validation - Class is mapped but is not included in any persistence unit - applies to java
    • Add class to persistence.xml
    • Unmap class - remove all JPA annotations from the type and all attributes.
  • Create new Entity (Use New Entity wizard) for targetEntity references which cannot be resolved - apply to both java and orm.xml
  • Insert @Table for unresolved default table on an Entity

Attributes

  • Create the corresponding relationship attribute and mapping (mappedBy that does not resolve)
  • Create the corresponding relationship mapping (mappedBy has invalid mapping type for this relationship)
  • Insert @Column for unresolved default column a basic mapping

Quick Assists

  • Make a Java class an Entity/Embeddable/MappedSuperclass by adding @Entity or adding it to an existing orm.xml file or creating a new one.

Back to the top