전이되는 곳을 생략하는 경우
(View의 패스가 없음)
<소스코드>
@Controller
public class AppointmentsController
@RequestMapping("/sample")
public ModelAndView doAction() {
ModelAndView mav = new ModelAndView();
model.addObject("message1", "aaaa");
return mav;
}
}
'자바 > JAVA...Spring' 카테고리의 다른 글
Spring 3.2 & MyBatis] Command(@ModelAttribute)에 의한 데이터 송수신 (0) | 2015.12.15 |
---|---|
Spring 3.2 & MyBatis] Form 데이터 송수신 (0) | 2015.12.15 |
Spring 3.2 & MyBatis] 전이되는 곳을 생략하는 경우(메서드 리턴값이 void) (0) | 2015.12.14 |
Spring 3.2 & MyBatis] JSON형식 취득하는 경우(클라이언트측) (0) | 2015.12.11 |
Spring 3.2 & MyBatis] JSON형식 취득하는 경우 (0) | 2015.12.11 |