Java Server Page (JSP) is becoming increasingly popular as a technology for creating dynamic web pages. JSP is not the same as ASP, PHP, and working mechanism. Generally, JSP pages are compiled rather than interpreted during execution. Calling the JSP file for the first time is actually a process of compiling servlet. When the browser requests this JSP file from the server, the server will check whether the JSP file has changed since the previous compilation. If the JSP file has not changed, the server will directly execute the servlet without re-compiling, in this way, the efficiency is significantly improved.
Today, I will work with you to look at JSP security from the perspective of Script Programming. The security risks such as source code exposure are not included in this article.ArticleIt is within the scope of the discussion. This article is intended for beginners.JSP ProgrammingFrom the very beginning, we should cultivate the awareness of security programming and avoid mistakes that should not be made to avoid losses that can be avoided. In addition, I am also a beginner. If you have any errors or other comments, please post them to us.
Full text reading:Http://www.javah.net/JSP_JSF/20070428/514.html