Jsp/servlet to build three-tier management information system

Source: Internet
Author: User

Absrtact: This paper introduces an implementation framework for the development of web-based management information System. With the Jsp/servlet technology and MVC design pattern, the development process is more flexible and easier to maintain.

1. Introduction

Management Information System (MIS) is a system of collecting, transmitting, storing, processing and using information, which is composed of people, computers and so on. With the development of science and technology and the expansion of information, Enterprise Informatization has become one of the effective means of Enterprise's unbeaten position in competition. MIS can not only provide information and data in a timely and comprehensive way, simplify the statistic work, put forward different reports to different management levels, but also predict the future situation according to the past data. Therefore, it is very important to develop a management information system which takes into account the development efficiency and operational efficiency, and satisfies the distributed event processing function. This paper describes a method of constructing three-layer management information system using Jsp/servlet.

2, the system three-tier architecture

The three-tier architecture of the system is shown in Figure 1.

Figure 1 Web application architecture based on Java technology

The whole management Information system adopts the browser/web/database three-layer architecture. The Web server accepts the request, executes a Java server-side applet servlet through the application server, and returns its output to enable interaction with the client for information resources. The database server is used to store the various data used in the management information system, and the data is entered directly by the database management program. The client of the system needs only one browser. Related personnel through the browser to query, add, modify, delete data, the information management.

3, the system design mode

Design pattern is a formal representation of object-oriented program designers to solve programming problems. Currently, in most Browser/server architecture Web applications, browsers interact directly with the user in the form of HTML or JSP, responding to user requests. Although very intuitive, but most of the management information system operation of the data volume is amazing, as the code increases will make JSP pages bloated, Web server overload. Therefore, the design pattern based on Model View Controller (Mvc.model-view-controller) is adopted on the intermediate layer. The model layer is used to implement the business logic, the view layer is used to display the user interface, the controller layer is mainly responsible for the control relationship between the view layer and the model layer. When implemented, the servlet is used as the controller of the application, and the JSP document is used as a view, and JavaBeans is applied to represent the model. All requests are sent to the servlet as the controller, which accepts the request and sends them to the appropriate JSP to respond to the request information. At the same time, the servlet generates JavaBeans instances and outputs them to the JSP environment based on the requirements of the JSP. The JSP can get the data in the JavaBeans either by calling the method directly or by using a Usebean custom tag. This design pattern realizes the separation of the data layer and the presentation layer well, and makes the development work easier and faster. In this design pattern, data transfer between levels is shown in Figure 2.

Figure 2 Data transfer diagram of MVC design pattern

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.