일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- mybatis
- MVC
- 프롬프트
- controller
- backend
- UML
- 맥린이
- handlerMapping
- NOTE
- getParameter
- pattern
- classdiagram
- setAttribute
- usecasediagram
- Agile
- FrontController
- App
- ERD
- getAttribute
- HTTP
- Framework
- Program
- 내장객체
- command
- DevOps
- jsp
- Cloud
- system developer
- Spring
- tiles
Archives
- Today
- Total
목록controller (1)
시작은 언제라도
3. FrontControllerServlet ex3
public void handleRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException,IOException { String command = request.getParameter("command"); Controller c= HandlerMapping.getInstance().create(command); try { String view= c.execute(request, response); request.getRequestDispatcher(view).forward(request, response); } catch (Exception e) { response.sendRedirect("error.j..
Web programming/Patterns
2021. 4. 18. 17:28