수업이 있다고 가정 해 봅시다.
public class MyClass {
@Autowired private AnotherBean anotherBean;
}
그런 다음이 클래스의 객체를 만들었습니다 (또는 다른 프레임 워크에서이 클래스의 인스턴스를 만들었습니다).
MyClass obj = new MyClass();
여전히 의존성을 주입 할 수 있습니까? 다음과 같은 것 :
applicationContext.injectDependencies(obj);
(Google Guice에는 이와 같은 것이 있다고 생각합니다)