해결된 질문
작성
·
198
0
현재 STS사용중입니다.
8:23
ApplicationContext context = new ClassPathXmlApplicationContext(configLocation:"application.xml");
에서 "configLocation:"
BookService bookService= (BookService)context.getBean(s:"bookService");
에서 "s:"
예제로 배우는 스프링 입문 (개정판)에서도
AOP실습중 amount:100 이렇게 쓰셨었는데
STS에서는
작성하신 것처럼 작성하면
기본적으로 에러가 발생해서
해당부분을 아래와 같이 지우고 동작시켜보고 있습니다.
ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
BookService bookService= (BookService)context.getBean("bookService");
마치 주석처럼 동작하는거 같은데
어떤 내용인지 알고 싶습니다.