-
Notifications
You must be signed in to change notification settings - Fork 17
evolution
Pierre Besson edited this page Aug 12, 2014
·
4 revisions
- All the business logic (database access, service layer)
- Routing
- Security
- Page rendering (HTML construction, css serving, assets)
- A fragment of the UI, for interactions
- That's all ...
- The user request a page
- The server treat the request, it makes one or sevral database requests
- The server construct the pages (html, js , css, images, ...)
- The server return the page to the server inside an http response
- The user request another page
- The server perform again the 2,3,4
The application architecture is a model which has to evolve in order to be able to benefit form all new technologies:
- JavaScript performance improvements
- HTML5 APIs (Cache, JS, CSS3)