간단하게 작성순서는 아래와 같다. 1. helloworld controller 작성 (비즈니스 로직 처리)2. helloworld jsp 작성 (View 처리)3. web.xml 파일 작성 (한글 encoding 설정, DispacherSevlet 등록, spring context 파일 위치)4. spring-context.xml 파일 작성(Bean 스캔, ViewResolver에서 사용할 jsp 등록) 1. helloworld controller 작성 package helloworld; import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping; @Controlle..