उपरोक्त सभी उत्तरों को मिलाकर, आप 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();
}
}
डीएओ ऑब्जेक्ट ओवरलोड को ढूंढता है। सभी विधि - मूल रूप से, अभी भी उपयोग करता है findAll()
public interface StudentDAO extends CrudRepository<StudentEntity, Long> {
Iterable<StudentEntity> findAll(Sort sort);
}
StudentEntity
ऐसे विस्तार BaseEntity
होते हैं जिनमें दोहराए जाने योग्य फ़ील्ड होते हैं (हो सकता है कि आप आईडी द्वारा छांटना चाहते हों, साथ ही)
@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();
:। वापसी प्रकार जोड़ना और निरर्थक सार्वजनिक संशोधक को हटाना भी एक अच्छा विचार है;)