使用springboot,和mongo的repository,我定義了一個Comparator類,想實作自己的物件的比較方法。程式碼如下:
package com.story.utils;
import java.util.Comparator;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import com.story.model.Phase;
import com.story.model.Story;
import com.story.repository.StoryRepository;
@Service
public class PhaseComparator implements Comparator<Phase>{
private String field;
private Story story;
@Autowired
private StoryRepository storyRepository;
public PhaseComparator() {
super();
}
public PhaseComparator (String field) {
this.field = field;
}
@Override
public int compare(Phase phase_1, Phase phase_2) {
if (this.field.equals("createdDate")) {
return phase_1.getCreatedDate() < phase_2.getCreatedDate() ? -1 : 1;
} else {
Story foundStory_1 = this.storyRepository.findOne(phase_1.getStoryId());
Story foundStory_2 = this.storyRepository.findOne(phase_1.getStoryId());
return foundStory_1.getLastUpdatedDate() < foundStory_2.getLastUpdatedDate() ? -1 : 1;
}
}
}
但是,這樣的話,storyRepository就是null。
請問應該如何處理呢?
謝謝
這樣寫應該沒問題,但你用的時候必須從 Spring 上下文中去取,例如用
@Autowired
。不知道你是不是這麼做的。如果你用的時候臨時再去new PhaseComparator()
,那裡面的storyRepository
肯定是 null。