프로그래밍/Spring Framework
-
Spring Web ApplicationContext 갖고 오기프로그래밍/Spring Framework 2020. 2. 22. 00:16
Spring Framework 기반의 애플리케이션에선 bean 객체를 갖고 오기 위해 GenericApplicationContext 설정, 참조한다. 그렇게 생성된 context 객체의 getBean 메소드를 통해 원하는 bean 객체를 참조할 수 있다. 스프링 기반의 웹 어플리케이션에선 bean 객체를 갖고 오기 위해 어떻게 context 객체를 참조해야 할까? 스프링 기반의 웹 어플리케이션을 만들기 위해 web.xml에 리스너를 생성해준다. org.springframework.web.context.ContextLoaderListener 클래스이다. ContextLoaderListener 이 클래스는 org.springframework.web.context.ContextLoader 클래스를 상속받아 구..