See: Description
Class | Description |
---|---|
CascadeAnnotationReader |
Base class for cascade annotation readers.
|
DeleteCascadeAnnotationReader |
Reads delete cascade annotation information for a field.
|
InsertCascadeAnnotationReader |
Reads insert cascade annotation information for a field.
|
SaveCascadeAnnotationReader |
Reads save cascade annotation information for a field.
|
SelectCascadeAnnotationReader |
Reads select cascade annotation information for a field.
|
UpdateCascadeAnnotationReader |
Reads update cascade annotation information for a field.
|
Annotation Type | Description |
---|---|
Cascade |
A general purpose cascade annotation.
|
DeleteCascade |
Used within a
Cascade annotation to define a cascade delete operation. |
InsertCascade |
Used within a
Cascade annotation to define a cascade insert operation. |
OneToManyCascade |
Cascade annotation for a one to many relationship between source row and
target row.
|
OneToOneCascade |
Cascade annotation for a one to one relationship between source row and
target row.
|
SaveCascade |
Used within a
Cascade annotation to define a cascade save operation. |
SelectCascade |
Used within a
OneToOneCascade , OneToManyCascade , or Cascade annotation
to define a cascade select operation. |
UpdateCascade |
Used within a
Cascade annotation to define a cascade update operation. |
If parent table is cached, then cascaded children of parent will be cascaded at the time parent is added to cache to avoid inconsistencies between cache and database. As a result cascades will occur when cache is modified not when cache writes to database.