Spring 전역 에서 Bean 인 스 턴 스 대상 가 져 오기

1090 단어 SpringSpringMVC
Maven 을 사용 하여 인 터 페 이 스 를 만 들 때 문 제 를 발 견 했 습 니 다. Maven 은 순환 의존 이 있어 서 는 안 됩 니 다. 그렇지 않 으 면 컴 파일 오류 가 발생 했 습 니 다. 만약 에 업무 논리 에서 순환 의존 을 해 야 할 때 어떻게 합 니까?
Spring 은 서비스 가 시 작 될 때 bean 인 스 턴 스 를 자동 으로 불 러 옵 니 다. 또한 용기 로 관리 합 니 다. 하나의 항목 은 다른 부모 프로젝트 나 하위 프로젝트 에 의존 할 수 있 지만 최종 적 으로 같은 항목 으로 컴 파일 됩 니 다. 그러면 bean 은 최종 적 으로 같은 용기 에서 관리 합 니 다. 이 때 용기 에 의 해 Maven 의 순환 의존 을 돌아 갈 수 있 습 니 다.용기 에서 응답 하 는 bean 인 스 턴 스 를 직접 가 져 옵 니 다. 코드 는 다음 과 같 습 니 다.
코드 인 스 턴 스
 
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

public class SpringContextHelper implements ApplicationContextAware {
	private static ApplicationContext context = null;

	@Override
	public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
		this.context = applicationContext;
	}

	public static Object getBean(String name) {
		return context.getBean(name);
	}

	public static Object getBean(Class> c) {
		return context.getBean(c);
	}
}

좋은 웹페이지 즐겨찾기