목록anyframe (17)
Gentle Breeze
출처 : Anyframe 3.2.0 Manual ( http://dev.anyframejava.org/anyframe/doc/core/3.2.0/corefw/guide/annotation-dependencies.html ) 특정 Bean의 기능 수행을 위해 다른 Bean을 참조해야 하는 경우 사용하는 Annotation으로는 @Autowired 또는 @Resource가 있다. @Autowired Spring Framework에서 지원하는 Dependency 정의 용도의 Annotation으로, Spring Framework에 종속적이긴 하지만 정밀한 Dependency Injection이 필요한 경우에 유용하다.@Resource JSR-250 표준 Annotation으로 Spring Framework 2..
http://pragmaticstory.com/966
* Web Framework - Web Framework Architecture Presentation Layer Business Layer - brower 가 ActionServlet 에 request → ActionServlet 실행 - ActionServlet - 사용자의 요청을 받는 창구 역할 (Struts 제공) - struts-config.xml 설정 내용을 읽어서 RequestProcessor 를 생성 즉, RequestProcessor = struts-config.xml - Action Form 은 VO class와 같음 → Form 객체를 Model 에 던져 줌 (테이블 당 하나씩 직접 만들어야 함) - jsp 의 form 값을 뿌릴 수 있어서 View 이기도 하지만 실제 Controll..