เมื่อรวมคำตอบทั้งหมดข้างต้นคุณสามารถเขียนโค้ดที่ใช้ซ้ำได้กับ BaseEntity:
@Data
@NoArgsConstructor
@MappedSuperclass
public abstract class BaseEntity {
@Transient
public static final Sort SORT_BY_CREATED_AT_DESC =
Sort.by(Sort.Direction.DESC, "createdAt");
@Id
private Long id;
private LocalDateTime createdAt;
private LocalDateTime updatedAt;
@PrePersist
void prePersist() {
this.createdAt = LocalDateTime.now();
}
@PreUpdate
void preUpdate() {
this.updatedAt = LocalDateTime.now();
}
}
วัตถุ DAO overloads วิธี findAll - โดยทั่วไปยังคงใช้ findAll()
public interface StudentDAO extends CrudRepository<StudentEntity, Long> {
Iterable<StudentEntity> findAll(Sort sort);
}
StudentEntity
ขยายBaseEntity
ที่มีเขตข้อมูลที่ทำซ้ำได้ (บางทีคุณอาจต้องการเรียงลำดับตาม ID เช่นกัน)
@Getter
@Setter
@FieldDefaults(level = AccessLevel.PRIVATE)
@Entity
class StudentEntity extends BaseEntity {
String firstName;
String surname;
}
ในที่สุดการให้บริการและการใช้งานSORT_BY_CREATED_AT_DESC
ซึ่งอาจจะใช้ไม่เพียง StudentService
แต่ใน
@Service
class StudentService {
@Autowired
StudentDAO studentDao;
Iterable<StudentEntity> findStudents() {
return this.studentDao.findAll(SORT_BY_CREATED_AT_DESC);
}
}
List<StudentEntity> findAllByOrderByIdAsc();
คำหลักเช่นดังนั้น: การเพิ่มประเภทการส่งคืนและการลบตัวดัดแปลงสาธารณะที่ซ้ำซ้อนก็เป็นความคิดที่ดีเช่นกัน)