<컨트롤러 작성>
<소스코드>
import java.util.Date;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
/**
* 간단 컨트롤러
*/
@Controller
모델(값을 유지하는 클래스) 작성
public class HelloWorldController {
@RequestMapping("/hello")
public ModelAndView helloWorld() {
ModelAndView mav = new ModelAndView("/helloView");
// 직접 모델에 메시지 설정
mav.addObject("message1", " Hello World, <strong>Srping MVC 3.0!</strong> ");
// 모델을 취득해서 메시지 설정
mav.getModelMap().put("message2", "메시지2");
mav.addObject("currentDate", new Date());
굵은부분 = [ 모델 (값을 유지핳는 클래스) 작성]
return mav;
}
}
'자바 > JAVA...Spring' 카테고리의 다른 글
Spring 3.2 & MyBatis] 공통 jsp (0) | 2015.12.02 |
---|---|
Spring 3.2 & MyBatis] JSP 정의(helloView.jsp) (0) | 2015.11.30 |
Spring 3.2 & MyBatis ) Spring MVC용 설정파일 (0) | 2015.11.27 |
Spring 3.2 & MyBatis ) ApplicationContext.xml(4) (0) | 2015.11.27 |
Spring 3.2 & MyBatis ) ApplicationContext.xml(3) (0) | 2015.11.26 |