MVC pattern
MVC mode is the abbreviation of "Model-View-Controller", and the Chinese translation is "Mode-View-Controller". MVCApplicationProgram always consists of these three parts. Event (event) causes the Controller to change the Model or View, or both at the same time. As long as the Controller changes the data or properties of the Models, all dependent Views will be automatically updated. class is similar. As long as the Controller changes the View, the View will get data from the underlying Model to refresh itself. The MVC pattern was first proposed by the Smalltalk language research group and is used in user interaction applications. There are many similarities between the smalltalk language and the java language. They are both object-oriented languages . Naturally, SUN recommended the MVC pattern as a way to develop web applications in the petstore (pet store) case application. The architecture pattern. The MVC pattern is an architectural pattern that actually requires the collaboration of other patterns. In the J2EE mode directory, service to worker mode is usually implemented, and service to worker mode can be composed of centralized controller mode, dispatcher mode and Page Helper mode. However, Struts only implements the View and Controller parts of MVC. The Model part needs to be implemented by developers themselves. Struts provides the abstract class Action so that developers can apply Model to Struts. Frame. The MVC pattern is a complex architectural pattern, and its implementation is also very complicated. However, we have ended up with many reliable design patterns . The combination of multiple design patterns makes the implementation of the MVC pattern relatively simple and easy. Views can be regarded as a tree, which can obviously be implemented using Composite Pattern. The relationship between Views and Models can be reflected by the Observer Pattern. Controller controls the display of Views, which can be implemented using Strategy Pattern. Model is usually a mediator and can be implemented using Mediator Pattern.Now let us understand where the three parts of MVC are in the J2EE architecture, which will help us understand the implementation of the MVC pattern. The corresponding relationship between MVC and J2EE architecture is: View is in Web Tier or Client Tier, usually JSP/Servlet, which is the page display part. The Controller is also in the Web Tier and is usually implemented with Servlet, that is, the logical part of the page display is implemented. Model is in the Middle Tier and is usually implemented using JavaBean or EJB on the server side, that is, the implementation of the business logic part.
1. MVC design idea
MVC in English is Model-View-Controller, which separates the input, processing, and output processes of an application according to Model, View, and Controller. In this way, an application is divided into three layers - model layer, View layer, control layer.
View (View) represents the user interaction interface. For web applications, it can be summarized as an HTML interface, but it may be XHTML, XML and Applet. As applications grow in complexity and scale, handling interfaces becomes challenging. An application may have many different views. The MVC design pattern's processing of views is limited to the collection and processing of data on the views, as well as user requests, and does not include the processing of business processes on the views. The processing of business processes is handed over to the model. For example, an order view only accepts data from the model and displays it to the user, and passes input data and requests from the user interface to the control and model.
Model: It is the processing of business processes/states and the formulation of business rules. The processing of the business process is a black box operation for other layers. The model accepts the data requested by the view and returns the final processing result. The design of the business model can be said to be the most important core of MVC. The currently popular EJB model is a typical application example. It further divides the model from the perspective of application technology implementation in order to make full use of existing components, but it cannot be used as a framework for application design models. It only tells you that designing according to this model can utilize certain technical components, thereby reducing technical difficulties. For a developer, he can focus on the design of the business model. The MVC design pattern tells us that the application model is extracted according to certain rules. The level of extraction is very important. This is also the design basis for judging whether the developer is excellent. Abstraction and concreteness cannot be too far apart, nor too close. MVC does not provide a model design method, but only tells you that these models should be organized and managed to facilitate model reconstruction and improve reusability. We can use object programming as an analogy. MVC defines a top-level class and tells its subclasses that you can only do these, but there is no way to limit what you can do. This is very important for programming developers.
There is another very important model in the business model, which is the data model. The data model mainly refers to the data storage (persistence) of entity objects. For example, save an order to the database and get the order from the database. We can list this model separately, and all database-related operations are limited to this model.
Control (Controller) can be understood as receiving requests from users, matching models and views together, and jointly completing user requests. The role of dividing the control layer is also very obvious. It clearly tells you that it is a distributor, what kind of model is selected, what kind of view is selected, and what kind of user requests can be completed. The control layer does not do any data processing. For example, when a user clicks a connection and the control layer accepts the request, it does not process the business information. It only passes the user's information to the model, tells the model what to do, and selects a view that meets the requirements to return to the user. Therefore, one model may correspond to multiple views, and one view may correspond to multiple models.
The separation of model, view and controller allows a model to have multiple display views. If the user changes the model's data through a view's controller, all other views that depend on that data should reflect those changes. Therefore, whenever any data changes, the controller notifies all views of the change, causing the display to update. This is actually a model change-propagation mechanism. The relationship between the model, view, and controller and their respective main functions are shown in Figure 1.
ASP.NET provides a good similar environment for implementing this classic design pattern. Developers implement views by developing user interfaces in ASPX pages; controller functions are implemented in logical function code (.cs); models usually correspond to the business part of the application system. Implementing this design in ASP.NET provides a multi-layer system that has obvious advantages over systems implemented with the classic ASP structure. Separating the user display (view) from the action (controller) improves code reusability. Separating the data (model) from the actions (controllers) that operate on it allows you to design a system that is independent of storing data behind the scenes. By its very nature, the MVC structure is a way to solve the problem of coupled systems.
2.1 View
A view is a representation of a model that provides a user interaction interface. Using multiple user widgets that contain a single display page, complex Web pages can display content from multiple data sources, and web developers and artists can independently participate in the development and maintenance of these Web pages.
Under ASP.NET, the implementation of views is very simple. Page development can be completed directly in the integrated development environment by dragging controls just like developing the WINDOWS interface. This article introduces that each page adopts the form of a composite view, that is: a page is composed of multiple subviews (user parts); the subview can be the simplest HTML control, server control or Web customization composed of multiple nested controls. controls. Pages are defined by templates. The template defines the layout of the page, the labels and number of user components. The user specifies a template, and the platform automatically creates pages based on this information. For static template content, such as site navigation, menus, and friendly links on the page, the default template content configuration is used; for dynamic template content (mainly business content), due to different user requests, only post-binding can be used. The display content of the user component is filtered according to different users. It enhances reusability and prototypes the layout of your site using composed pages composed of user widgets configured from templates.
The general processing flow of the view part is as follows: First, the page template defines the layout of the page; the page configuration file defines the specific content of the view tag (user component); then, the page is initialized and loaded by the page layout strategy class; each user component It is initialized according to its own configuration, loads the validator and sets parameters, as well as event delegation, etc.; after the user submits it and passes the verification of the presentation layer, the user component automatically submits the data to the business entity, that is, the model.
This part mainly defines the WEB page base class PageBase; the page layout strategy class PageLayout, which completes the page layout and is used to load user components to the page; the user component base class UserControlBase, which is the user component framework, is used to dynamically load inspection components, and Enable personalization of user widgets. In order to achieve the flexibility of WEB applications, many configuration files are also used in the view part. For example, configuration files include template configuration, page configuration, path configuration, verification configuration, etc.
2.2 Controller
To be able to control and coordinate the processing of multiple requests per user, the control mechanism should be managed in a centralized manner. Therefore, controllers are introduced for the purpose of centralized management. The application's controller centrally receives the request from the client (typically a user running a browser), decides what business logic function to perform, and then delegates the responsibility for generating the next step in the user interface to an appropriate view component.
Use the controller to provide a centralized entry point for controlling and processing requests. It is responsible for receiving, intercepting and processing user requests; and delegating the request to the distributor class to determine the view presented to the customer based on the current status and the results of the business operation. . In this part, HttpReqDispatcher (distributor class), HttpCapture (request capturer class), Controller (controller class), etc. are mainly defined, and they cooperate with each other to complete the functions of the controller. The request capturer class captures the HTTP request and forwards it to the controller class. The controller class is the initial entry point into the system for handling all requests. After the controller completes some necessary processing, it delegates the request to the distributor class; the distributor class distributor is responsible for the management and navigation of views. It manages which view will be selected to be provided to the user and provides control of distribution resources. In this part, design patterns such as distributor, strategy, factory method, and adapter are used respectively.
To enable request capturer classes to automatically capture user requests and process them, ASP.NET provides a low-level request/response API that enables developers to use .NET Framework classes to serve incoming HTTP requests. To do this, you must create a class that supports the System.Web.IHTTPHandler interface and implements the ProcessRequest() method: the request capture class, and add the class in the
<httphandlers>
...
...
</httphandlers>
2.3 Model
Models in MVC systems can be conceptually divided into two categories

技嘉的主板怎么设置键盘开机首先,要支持键盘开机,一定是PS2键盘!!设置步骤如下:第一步:开机按Del或者F2进入bios,到bios的Advanced(高级)模式普通主板默认进入主板的EZ(简易)模式,需要按F7切换到高级模式,ROG系列主板默认进入bios的高级模式(我们用简体中文来示范)第二步:选择到——【高级】——【高级电源管理(APM)】第三步:找到选项【由PS2键盘唤醒】第四步:这个选项默认是Disabled(关闭)的,下拉之后可以看到三种不同的设置选择,分别是按【空格键】开机、按组

酷睿i73770配什么显卡好啊RTX3070是一款非常强大的显卡,它具有出色的性能和先进的技术。无论是玩游戏、渲染图形还是进行机器学习,RTX3070都能轻松应对。它采用了NVIDIA的Ampere架构,拥有5888个CUDA核心和8GB的GDDR6内存,能够提供流畅的游戏体验和高品质的图形效果。RTX3070还支持光线追踪技术,能够呈现逼真的光影效果。总之,RTX3070是一款强大而先进的显卡,适合那些追求高性能和高品质的用户使用。RTX3070是一款NVIDIA系列的显卡。采用第2代NVID

音乐生用什么平板合适华为的ipad中的12.9寸音响是一款非常好的产品。它配备了四个扬声器,音效非常出色。而且,它属于pro系列,相比其他款式稍微更好一些。总体来说,ipadpro是一款非常优秀的产品。这款mini4手机的喇叭声音较小,效果一般般。不能用来外放音乐,还是需要依靠耳机来享受音乐。耳机音质好的会有稍微好一些的效果,而便宜的三四十元的耳机就无法满足要求了。钢琴电子谱用什么平板如果您想购买一台10寸以上的iPad,我推荐使用两款应用程序,分别是Henle和Piascore。Henle提供

在使用微软公司开发的Windows10操作系统过程中,不少使用者对于其中名为Cortana的全新技术感到好奇和疑惑,Cortana在中文语境中的正式称呼为“小娜”,实际上是Windows10系统内置的一款人工智能(AIassistant)服务程序cortana小娜常见问题及解决方法怎么开启小娜没反应解决步骤不支持中国解决方法搜索框放到cortana里的方法cortana是什么软件答:"Cortana小娜"是由微软公司精心打造的一款云端平台个人智能助手,具备登陆与非登陆两种使用模式。当您处于登录状

流畅使用cad需要什么配置要想顺利运用CAD软件,需要满足以下配置要求:处理器要求:为了能够流畅运行《文字玩出花》,您需要至少配备一台IntelCorei5或AMDRyzen5以上的处理器。当然,如果您选择更高性能的处理器,将能够获得更快的处理速度和更好的性能。内存是计算机中一个非常重要的组件,它对于电脑的性能和使用体验有着直接的影响。一般来说,我们推荐至少8GB的内存,这样可以满足大部分日常使用的需求。但是,为了获得更好的性能和更流畅的使用体验,建议选择16GB或以上的内存配置。这样可以确保在

rx5808g安装什么驱动好20.5.1和20.4.2WHQL是指软件或驱动程序的版本号。这些版本号通常用于标识软件或驱动程序的更新或修复。在计算机领域中,WHQL代表Windows硬件质量实验室,它是微软公司用来测试和验证硬件和驱动程序的合规性和稳定性的机构。因此,20.5.1和20.4.2WHQL表示这些软件或驱动程序已经通过了微软的测试和验证,可以安全地使用在Windows操作系统中。AMDrx580显卡相对稳定驱动20.5.1和20.4.2WHQL是指软件或驱动程序的版本号。这些版本号通

C库内存分配函数void*calloc(size_tnitems,size_tsize)分配所请求的内存并返回指向它的指针。malloc和calloc的区别在于malloc不设置内存为零,而calloc将分配的内存设置为零。内存分配函数内存可以通过两种方式分配,如下所述-编译时分配内存后,执行期间不能更改。就会出现内存不足或者浪费的问题。解决方案是动态创建内存,即在程序执行过程中根据用户的要求创建内存。标准用于动态内存管理的库函数如下:-malloc()calloc()realloc()free

i34150搭配1G独显能玩哪些游戏能玩lol等小游戏。GTX750和GTX750TI是非常合适的显卡选择。如果只是玩一些小游戏或者不玩游戏,建议使用i34150的集成显卡就可以了。一般来说,显卡和处理器的搭配差价并不是很大,所以选择合理的搭配是很重要的。如果需要2G显存,推荐选择GTX750TI;如果只需要1G显存,直接选择GTX750即可。GTX750TI可以看作是GTX750的增强版本,具有超频功能。i34150可以搭配什么显卡根据需求,如果你打算玩单机游戏,建议你考虑更换显卡。你可以选择


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
