Author: Jackie Source: CCID Java Forum Release Date: 2005.12.29
JSP (Java Server Pages) is a dynamic web page technical standard proposed by Sun Microsystems and jointly established by many companies. JSP technology uses Java as the scripting language. JSP web pages provide an interface for the Java Library Unit on the server to serve HTTP applications.Program.
In the traditional web page HTML file (*. htm ,*. java program snippets (scriptlet) and JSP tags are added to HTML to form a JSP webpage (*. JSP ). When the Web server encounters a request to access the JSP webpage, it first executes the program segment and then returns the execution result to the customer in HTML format. Program snippets can operate databases, redirect webpages, and send emails. This is the function required to build a dynamic website. All program operations are performed on the server, and the results are only obtained after the network is uploaded to the client. The client has the lowest requirements on the client browser and can implement no plugin, no ActiveX, and no Java applet, no frame.
Advantages of JSP:
· Updates to the user interface are actually performed by the Web server, so it gives people the feeling that the updates are fast.
· All applications are server-based, so they can always be updated to the latest version.
· The client interface is not very cumbersome and is easy to deploy, maintain, and modify for various applications.