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