私は抽象的なファクトリクラスのStudentValidatorFactoryを持っています。このファクトリクラスは、(指定されたパラメータに基づいて)バリデーションマップを注入する必要のある様々なStudentValidatorクラスインスタンスを作成するために用意されています。抽象ファクトリにデータベースアクセスの依存関係を挿入するのは良いですか?
public class StudentValidatorFactory{
public static final int JUNIOR_STUDENT_TYPE = 1;
public static final int SENIOR_STUDENT_TYPE = 2;
public StudentValidator createStudentValidator(int studentType) throws StudentValidatorCreationException{
Map<String,ValidationBean> validationMap = readValiationMapFromPersistentOrCachedStorage(studentType);
switch (studentType){
case JUNIOR_STUDENT:
return new JuniorStudentValidator(validationMap);
case SENIOR_STUDENT:
return new SeniorStudentValidator(validationMap);
}
}
}
public interface StudentValidator{
void validate(Student student) throws StudentValidationException;
}
public class JuniorStudentValidator{
private Map<String, ValidationBean> validationMap;
public JuniorStudentValidator(Map<String,ValidationBean> validationMap){
this.validationMap = validationMap;
}
public void validate(Student student) throws StudentValidationException{
// make use of validation map for apply junior student related validations on the student
}
}
public class SeniorStudentValidator{
private Map<String, ValidationBean> validationMap;
public SeniorStudentValidator(Map<String,ValidationBean> validationMap){
this.validationMap = validationMap;
}
public void validate(Student student) throws StudentValidationException{
// make use of validation map for apply senior student related validations on the student
}
}
私の質問は、(学生のタイプに基づいて)永続ストレージから検証マップを読み込むかどうかStudentValidatorFactory.createStudentValidator(int型studentType)について方法は、作成方法内で行う必要がありますか?さもなければ、そのような実装の詳細について工場が認識しているか依存しているべきか?
学生バリデータを作成するときにスイッチ(studentType)ステートメントを避けるための解決策があるのであれば、私は感謝します - 私の頭の上にあるアイデアは、内部的に管理されたマップを持ち、反射。
このような手法を使用する利点は、バリデーターを(依存性注入によって)テストするのがはるかに簡単であることです。
これは、提供されたコードのために改良したものであるが、それは質問に答えていません。生徒の妥当性検査のための工場への依存が必要か、学生タイプの**スイッチ**を避けることでより良い解決策がありますか?私は、より疎結合された機能を実装する方法を探しています。 –
@marius_neo:あなたの質問に「switch statement issue」は言及していませんでした。 – home
@homeあなたは正しいです。私は今これをしました。 –