Slide 7
Slide 7 text
Copyright© CREDIT SAISON Co., Ltd. All Right Reserved .
7
業務ロジックとViewは既存コードを使う
組み込みTomcat RequestProcessor
ActionForm
Action
JspServlet
業務ロジック
struts-
config.xml
DispatcherServlet Controller
JSP
@Controller
public class HogeController {
private final RequestProcessor requestProcessor;
@RequestMapping(
method = {RequestMethod.GET,RequestMethod.POST},
path = {"*.do", "*/*.do"}
)
public void process(HttpServletRequest request,
HttpServletResponse response){
requestProcessor.process(request, response);
}
}
l HTTPリクエストの受け付けはSpring MVC
l 業務ロジックのハンドリングはStruts1
l URL は ”.do” のまま
クラシック