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/DaliRefactoringParticipants"

< Dali‎ | Indigo
(Java Package)
(Java Class)
Line 52: Line 52:
  
 
===Java Class===
 
===Java Class===
*persistence.xml
+
====persistence.xml====
**udpate class element
+
*udpate class element
**EclipseLink properties - rename if the class matches
+
*EclipseLink properties - rename if the class matches
***eclipselink.session.customizer
+
**eclipselink.session.customizer
***eclipselink.descriptor.customizer
+
**eclipselink.descriptor.customizer
***eclipselink.logging.logger
+
**eclipselink.logging.logger
***eclipselink.session-event-listener
+
**eclipselink.session-event-listener
*Mapping files
+
====Mapping files====
** rename entity/embeddable/mapped-superclass class element
+
If a package element is used we will ignore it and force a fully-qualified name in for any of the below classes that is renamed. This is the same as the current behavior in adding classes to an orm.xml mappings file. See [https://bugs.eclipse.org/bugs/show_bug.cgi?id=176261 bug 176261]
** rename other class references
+
* rename entity/embeddable/mapped-superclass class element
***id-class element
+
* rename other class references
*** 1-1/1-m/m-1/m-m target-entity
+
**id-class element
*** element-collection map-key-class
+
** 1-1/1-m/m-1/m-m target-entity
*** 1-m/m-m map-key-class
+
** element-collection map-key-class
*** EclipseLink
+
** 1-m/m-m map-key-class
**** entity/mapped-superclass/embeddable customizer
+
** EclipseLink
**** entity class-extractor
+
*** entity/mapped-superclass/embeddable customizer
**** entity/mapped-superclass cache-interceptor
+
*** entity class-extractor
 +
*** entity/mapped-superclass cache-interceptor
  
 
===Java Package===
 
===Java Package===

Revision as of 16:02, 24 June 2010

Refactoring Overview

  • Display changes in the Refactoring preview dialog
  • Support Undo
  • Any XML changes will be done without the user having to check the box 'Update fully qualified names in non-Java text files'. Currently the user can get java type renames to be completed in the persistence.xml by checking that box, but a java type delete will not edit the persistence.xml.
  • Support refactorings in 1 project affecting 1 or more JpaProjects in the workspace
  • Must handle other refactoring participants making changes to the same files. The assumption will be that we are the only ones making changes for JPA spec metadata. So while other refactoring participants can change the same file, they must not make the exact same changes as Dali.

bug 209489

Refactoring Participants

Delete Refactoring

Java Class

  • persistence.xml
    • delete corresponding class element
    • A property that references the deleted class will not be deleted. The user will be left with a validation error. This is how JDT handles references to deleted classes.
  • Mappings files
    • Delete entity/embeddable/mapped-superclass element
    • Other references to the deleted class (id-class, map-key-class, etc) will not be deleted
  • Other use cases to handle:
    • Deletion of nested class
    • Deletion of class from another project

Java Package

  • all items from Java Class - multiple types will be deleted when a package is deleted
  • package element in an orm.xml
    • for now we will not touch the package element even it it matches exactly. In order to delete the package element we would have to check all types - entity, mapped superclass, idclass, target-entity, etc. Handle with validation bug 193535.

Folder - Source or Other

  • all items from Java Package above
  • persistence.xml
    • delete corresponding mapping-file elements

Java Field/Method

Do we want to do anything? At least lower priority

  • Java files
    • delete attribute/association overrides that reference the deleted field/method
  • Mappings files
    • delete corresponding attribute mappings
    • delete attribute/association overrides that reference the deleted field/method

Mapping File

  • persistence.xml
    • delete corresponding mapping-file element

Rename Refactoring

If 'Update references' is *not* checked on the refactoring dialog then the following changes will not be made.

If 'Update fully qualified names in non-Java text files' is checked we must not conflict with the platform making changes. If it is unchecked our changes will still be made as long as 'Update references' is checked.

Java Class

persistence.xml

  • udpate class element
  • EclipseLink properties - rename if the class matches
    • eclipselink.session.customizer
    • eclipselink.descriptor.customizer
    • eclipselink.logging.logger
    • eclipselink.session-event-listener

Mapping files

If a package element is used we will ignore it and force a fully-qualified name in for any of the below classes that is renamed. This is the same as the current behavior in adding classes to an orm.xml mappings file. See bug 176261

  • rename entity/embeddable/mapped-superclass class element
  • rename other class references
    • id-class element
    • 1-1/1-m/m-1/m-m target-entity
    • element-collection map-key-class
    • 1-m/m-m map-key-class
    • EclipseLink
      • entity/mapped-superclass/embeddable customizer
      • entity class-extractor
      • entity/mapped-superclass cache-interceptor

Java Package

  • all items from Rename Type
  • Mapping files
    • Rename package element - this can be a fragment

Java Source Folder

Java Field/Method

  • Java
    • rename mappedBy
    • rename MapsId
    • rename MapKey
    • rename AttributeOverride/AssociationOverride name
    • update @OrderBy
  • Mapping files
    • rename corresponding mapping
    • rename mapped-by
    • rename maps-id
    • rename map-key
    • rename attribute-override/association-override name
    • update order-by
    • rename pre-persist, post-persist, pre-remove, post-remove, pre-update, post-update, post-load

Mapping File

  • persistence.xml
    • update mapping-file reference
    • Rename the default orm.xml/ecliselink-orm.xml file we could add a reference to it in the persistence.xml if it does not exist

Move Refactoring

Push Down Refactoring

  • Java
    • Annotations move with the method/field
    • What if there are attribute overrides on the subclass for the fields that are being move?
      • Remove the attribute overrides?
      • Take that metadata and put it on the attribute? what if it is different from what already exists?
      • We can check for all of this information in the refactoring participant and decide whether there is anything we can do.
  • Mapping files
    • we would have to move the mappings to the subclass entity in orm.xml. If the subclass entity does not exist we create it.


Pull Up Refactoring

  • Java
    • Annotations move with the method/field
  • Mapping files
    • Move the mapping to the superclass entity in orm.xml, creating the entity if necessary. Moving this information isn't as important for EclipseLink since it supports mapping inherited attributes.


Extract Superclass Refatoring


Extract Class Refactoring

JPA DB Metadata Refactoring Participants

bug 136333

We need a JPA project preference for these since it would only apply for someone who is not generating their schema.

  • Rename/Move Type
    • Add @Table if name is not currently specified(only if it currently matches a table on the database? - would have to be connected)
      • Entity name specified - no need to add @Table
      • Inheritance SINGLE_TABLE strategy - no need to add @Table if not the root
    • Add @JoinTable if not currently specified to any relationship mappings that default to a JoinTable either owned by the renamed type or where the renamed type is the target.
    • Add @CollectionTable to an ElementCollection owned by the renamed type if it is not currently specified.
  • Rename attribute
    • Add @Column if name is not currently specified
    • Add @MapKeyColumn
    • Add @JoinColumn
    • Add @MapKeyJoinColumn
    • Add @PrimaryKeyJoinColumn
    • Add @CollectionTable if the mapping is an ElementCollection and the collection table is not currently specified

Refactoring Contributions

Move Annotations to XML

Move XML to Annotations

Change Access Type

  • move annotations from fields to properties (1 or more) or vice versa. Would have to include creating the appropriate fields or properties or choosing the ones that match.

Rename Sequence/Table Generator

  • rename the generated-value->generator references in java and orm.xml

Back to the top