『 컨트롤러 클래스 작성 』
<코드작성>
@Controller
@RequestMapping("/test/form2")
public class Form2Controller {
// ①command 초기 객체 취득
@ModelAttribute("sampleCommand")
public SampleCommand createInitCommand() {
SampleCommand command = new SampleCommand();
return command;
}
// ②초기값 설정
@RequestMapping(method=RequestMethod.GET)
public void setupForm(Model model) {
SampleCommand command = createInitCommand();
command.setAge(1);
model.addAttribute("sampleCommand", command);
}
'자바 > JAVA...Spring' 카테고리의 다른 글
XMLHttpRequest의 개요 (0) | 2015.12.18 |
---|---|
Spring 3.2 & MyBatis] 컨트롤러 클래스 작성(2) (0) | 2015.12.16 |
Spring 3.2 & MyBatis] Command 클래스 작성 (0) | 2015.12.15 |
Spring 3.2 & MyBatis] Command(@ModelAttribute)에 의한 데이터 송수신 (0) | 2015.12.15 |
Spring 3.2 & MyBatis] Form 데이터 송수신 (0) | 2015.12.15 |