경량 컨테이너 - JAVA EE, Servlet container는 무겁기 때문에 Spring 에서는 가볍게 만듦
Spring - Servlet container 만 있으면 웹 프로그램을 짤 수 있음
bean container = Ioc container
pakage member class 는 한글을 쓸 수 없음 but inner class는 한글을 쓸 수 없음
// 1) 스프링 Ioc container에게 객체를 생성하기 위한 패키지를 알려준다.
// => 스프링 Ioc container는 패키지를 뒤져서 @Component, @Controller, @RestController, @Service 등이 붙은 클래스를 찾아내
// 객체를 생성하고 보관한다.
@ComponentScan("com.eomcs.mylist")
RestController 는 리턴값이 JSON임
Controller 는 리턴값이 JSP 임
@Service / @Component 랑 같은 component 인데 service 관리하는 객체는 @Service 를 붙여주면됨
Appconfig의 메서드는 프론트 컨트롤러의 객체 관리자가 호출함