반응형 컨테이너1 spring 컨테이너 구동 및 객체검색 public static void main(String[] args) { // 1. Spring IoC 컨테이너를 구동한다. ApplicationContext container = new ClassPathXmlApplicationContext("applicationContext.xml"); // 2. Spring IoC 컨테이너로부터 BoardService 타입의 객체를 검색한다. BoardService boardService = (BoardService) container.getBean("boardService"); } ================================================================== ** applicationContext.xml 을 검색하여 정보를.. 2015. 4. 14. 이전 1 다음 반응형