"액션"값을 기반으로 작업을 수행하는 서블릿을 입력으로 전달하려고합니다.
다음은 샘플입니다
public class SampleClass extends HttpServlet {
public static void action1() throws Exception{
//Do some actions
}
public static void action2() throws Exception{
//Do some actions
}
//And goes on till action9
public void doPost(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException {
String action = req.getParameter("action");
/**
* I find it difficult in the following ways
* 1. Too lengthy - was not comfortable to read
* 2. Makes me fear that action1 would run quicker as it was in the top
* and action9 would run with a bit delay - as it would cross check with all the above if & else if conditions
*/
if("action1".equals(action)) {
//do some 10 lines of action
} else if("action2".equals(action)) {
//do some action
} else if("action3".equals(action)) {
//do some action
} else if("action4".equals(action)) {
//do some action
} else if("action5".equals(action)) {
//do some action
} else if("action6".equals(action)) {
//do some action
} else if("action7".equals(action)) {
//do some action
} else if("action8".equals(action)) {
//do some action
} else if("action9".equals(action)) {
//do some action
}
/**
* So, the next approach i tried it with switch
* 1. Added each action as method and called those methods from the swith case statements
*/
switch(action) {
case "action1": action1();
break;
case "action2": action2();
break;
case "action3": action3();
break;
case "action4": action4();
break;
case "action5": action5();
break;
case "action6": action6();
break;
case "action7": action7();
break;
case "action8": action8();
break;
case "action9": action9();
break;
default:
break;
}
/**
* Still was not comfortable since i am doing un-necessary checks in one way or the other
* So tried with [reflection][1] by invoking the action methods
*/
Map<String, Method> methodMap = new HashMap<String, Method>();
methodMap.put("action1", SampleClass.class.getMethod("action1"));
methodMap.put("action2", SampleClass.class.getMethod("action2"));
methodMap.get(action).invoke(null);
/**
* But i am afraid of the following things while using reflection
* 1. One is Security (Could any variable or methods despite its access specifier) - is reflection advised to use here?
* 2. Reflection takes too much time than simple if else
*/
}
}
내가 필요한 것은 더 나은 가독성과 코드 유지 관리를 위해 코드에서 너무 많은 if / else-if 검사를 피하는 것입니다. 그래서 다른 대안을 시도했습니다
1. 스위치 케이스 -여전히 내 조치를 수행하기 전에 너무 많은 검사를 수행합니다.
2. 반사
i] 한 가지 중요한 것은 보안입니다. 액세스 지정자에도 불구하고 클래스 내의 변수 및 메소드에도 액세스 할 수 있습니다. 날씨에 따라 코드에서 사용할 수 있는지 확실하지 않습니다.
ii] 그리고 다른 하나는 간단한 if / else-if 검사보다 시간이 더 걸린다는 것입니다
위의 코드를 더 나은 방식으로 구성하도록 제안 할 수있는 더 나은 접근 방법이나 더 나은 디자인이 있습니까?
편집
아래 답변을 고려 하여 위의 스 니펫에 대한 답변 을 추가했습니다 .
그러나 여전히 다음 클래스 "ExecutorA"및 "ExecutorB"는 몇 줄의 코드 만 수행합니다. 메소드로 추가하는 것보다 클래스로 추가하는 것이 좋은 습관입니까? 이와 관련하여 조언하십시오.