Open main menu

CDOT Wiki β

Changes

MVC

422 bytes added, 23:35, 3 April 2007
Sample code
<ol>
<li>The web browser requests a resource (/mypage.action, /reports/myreport.pdf, et cetera)</li>
<li>The Filter Dispatcher looks at the request and determines the appropriate Action</li>
<li>The Interceptors automatically apply common functionality to the request, like workflow, validation, and file upload handling</li>
<li>The Action method executes, usually storing and/or retrieving information from a database</li>
<li>The Result renders the output to the browser, be it HTML, images, PDF, or something else</li>
</ol>
<br>
1
edit