JSP (java server page) is a dynamic technical standard established in 1999 by SunMicrosystems, which was jointly established by a number of companies. JSP is a new generation of dynamic content programming technology, which inherits the "write once, run anywhere" feature of Java technology, separating the development and maintenance of developers from the platform [3]. By the technologies of HTML, DHTML and XML, etc., the information-rich and dynamic Web pages are formed. It makes it easy and fast for web developers to build web platforms and build powerful web sites. JSP can separate the user interface from the content hierarchy, allowing Web developers to avoid modifying the underlying dynamic content when modifying the overall layout. <br>The Java program segment inserted into JSP can be operated. When a JSP page on the server is executed for the first time, the JSP engine on the server first translates the JSP page file into a Java file, and then compiles the Java file to generate bytecode The file, and then respond to the client's request by executing the bytecode file, and when the JSP is requested to be executed again, the JSP engine will directly execute the bytecode file to respond to the client, which is also a reason why JSP is faster than ASP. In addition, JSP has made improvements in many other aspects. It has the advantages of separating dynamic pages from static pages, being able to escape the constraints of the hardware platform, and running after compilation. It completely overcomes the shortcomings of ASP script-level execution.
正在翻译中..