Spring 소스 코드 의 디자인
Spring 의 소스 코드 에서 다음 코드 를 보 았 는데 사용 방법 이 매우 교묘 하 게 느껴 져 기록 해 보 세 요.
ReflectiveAspectJAdvisorFactory:
private List getAdvisorMethods(Class> aspectClass) {
final List methods = new LinkedList();
// :ReflectionUtils.MethodCallback()
// 1,MethodCallback , 。
// 2, , , 。
// Method , : , 。
ReflectionUtils.doWithMethods(aspectClass, new ReflectionUtils.MethodCallback() {
@Override
public void doWith(Method method) throws IllegalArgumentException {
// Exclude pointcuts
if (AnnotationUtils.getAnnotation(method, Pointcut.class) == null) {
methods.add(method);
}
}
});
Collections.sort(methods, METHOD_COMPARATOR);
return methods;
}
다음은 ReflectionUtils. doWithMethods 에서 호출 된 doWithMethods 방법의 실현 을 살 펴 보 겠 습 니 다.
public static void doWithMethods(Class> clazz, MethodCallback mc, MethodFilter mf) {
// Keep backing up the inheritance hierarchy.
Method[] methods = getDeclaredMethods(clazz);
for (Method method : methods) {
if (mf != null && !mf.matches(method)) {
continue;
}
try {
//
// Method
mc.doWith(method);
}
catch (IllegalAccessException ex) {
throw new IllegalStateException("Not allowed to access method '" + method.getName() + "': " + ex);
}
}
if (clazz.getSuperclass() != null) {
doWithMethods(clazz.getSuperclass(), mc, mf);
}
else if (clazz.isInterface()) {
for (Class> superIfc : clazz.getInterfaces()) {
doWithMethods(superIfc, mc, mf);
}
}
}
패턴 사용
이런 모드 는 어디 에 사용 합 니까?이 모드 와 템 플 릿 모드 가 비슷 한 것 같 습 니 다. 공 통 된 처 리 를 집중 시 키 고 특수 처 리 를 인터페이스 로 써 서 사용 하 는 곳 에서 스스로 실현 하도록 합 니 다.인 터 페 이 스 를 실현 하 는 곳 에서 자신 이 하고 싶 은 일 을 할 수 있다. 예 를 들 어:
@(Insert "Insert Into XXX ......")
void insertUserInfo(User user);
많은 부분 에서 이렇게 써 야 하기 때문에 추상 류, 추상 류 의 역할 을 썼 다.
다음 과 같이 구현:
public abstract class AbstractBatchCommit {
/**
* N
* @author shijiapeng
* @date 2016 9 22
* @param list
*/
public void commitBatch(List list) {
try{
// N List
List commitList = new ArrayList(Constants.BATCH_COMMIT_SIZE);
for(int idx = 0; idx < list.size(); idx++){
commitList.add(list.get(idx));
// N
if(idx !=0 && (idx + 1)%Constants.BATCH_COMMIT_SIZE == 0){
//
callSQL(commitList);
// list
commitList.clear();
}
}
// N , N ,
if(!commitList.isEmpty()){
callSQL(commitList);
}
} catch(Exception e){
e.printStackTrace();
throw new RuntimeException(e);
}
}
/*
* SQL
*/
public abstract void callSQL(List list) throws SQLException;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.