일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- usecasediagram
- jsp
- MVC
- 내장객체
- UML
- NOTE
- setAttribute
- Cloud
- App
- handlerMapping
- FrontController
- pattern
- backend
- DevOps
- tiles
- classdiagram
- command
- HTTP
- mybatis
- system developer
- getAttribute
- Program
- Spring
- 프롬프트
- 맥린이
- getParameter
- ERD
- Agile
- Framework
- controller
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