RequestFactory client-side inheritance of typed class with generics
问题 I would like to know, is it possible to use generic classes of request factory proxy/context for common actions for all entities, like getById(Long id) . In my app I will have many dictionaries like classes, that will have only id and name parameters, so I would like to write once functionality and use it through inheritance in rest classes: Here is server implementation: Domain model classes @MappedSuperclass public class GenericModel<T extends GenericModel<T>> implements Identifiable,