Add new CacheableDSpaceObject abstract class for Hibernate second-level caching. Required in Hibernate 6 as subclasses cannot use @Cache annotation

This commit is contained in:
Tim Donohue
2024-03-26 15:01:06 -05:00
parent 0ff9fa0f49
commit befef7f7b1
7 changed files with 27 additions and 11 deletions

View File

@@ -52,7 +52,7 @@ import org.dspace.eperson.Group;
*/
@Entity
@Table(name = "collection")
public class Collection extends DSpaceObject implements DSpaceObjectLegacySupport {
public class Collection extends CacheableDSpaceObject implements DSpaceObjectLegacySupport {
@Column(name = "collection_id", insertable = false, updatable = false)
private Integer legacyId;