summary:
This article is a fool's tutorial, but it introduces more technical features of Struts. The purpose is to help people who don't know Struts get started quickly. Don't watch it if you are an expert. Combined with Jbuilder X and weblogic server 8.1, the process of using the Struts framework is explained in detail.
[Quote] Struts is an open source enterprise-level Web application development framework. It is designed to reduce the overall burden of constructing enterprise Web applications. Struts is an open source software developed under the Jakarta project. It consists of a series of framework classes, auxiliary classes and customized JSP tag libraries. It is positioned in J2EE application development based on the Model 2 design pattern. The Model 2 system is an application of the MVC (Model-View-Controller) system. In the MVC system, the data model (Model), presentation logic (View) and control logic (Controller) are separate components, but they can communicate with each other. Struts strives to reduce the overall burden of constructing enterprise-level Web applications and provides internationalization and database connection pool support. The Struts system can be seen as two relatively independent parts: the first part is the Struts API, which is used to write application components that support Struts; the second part is the JSP tag library of Struts, which consists of four tags: html, bean, logic and template. composition. The two parts of Struts have different users. For smaller projects, the same user may use both parts; but for larger projects, usually the developer uses the API component and the person responsible for the layout of the HTML page uses the tag library.
Expand