Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize dynamic page to static page with JSP technology

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article is about how JSP technology enables dynamic pages to static pages. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

The solution of JSP technology to realize dynamic page to static page is first:

In order to understand the origin of this framework, let's first take a look at the contents of the JAVA file that the JSP parser converts the JSP code we wrote into.

Here is a JSP file, test.jsp

<% @ pagelanguage=javacontentType=text/html;charset=GB2312% > <% out.write () % > < html > < head > < body > <% = output% > < / body > < / head > < / html > the test$jsp.java content of the Java file converted by Tomcat is as follows: packageorg.apache.jsp; importjavax.servlet.*; importjavax.servlet.http.*; importjavax.servlet.jsp.*; importorg.apache.jasper.runtime.* Publicclasstest$jspextendsHttpJspBase {static {} publictestOutRedir$jsp () {}

How to realize dynamic page to static page with JSP technology

Privatestaticboolean_jspx_inited=false; publicfinalvoid_jspx_init () throwsorg.apache.jasper.runtime.JspException {} publicvoid_jspService (HttpServletRequestrequest,HttpServletResponseresponse) throwsjava.io.IOException,ServletException {JspFactory_jspxFactory=null; PageContextpageContext=null; HttpSessionsession=null; ServletContextapplication=null; ServletConfigconfig=null; JspWriterout=null; Objectpage=this; String_value=null; try {if (_ jspx_inited==false) {synchronized (this) {if (_ jspx_inited==false) {_ jspx_init () _ jspx_inited=true;} _ jspxFactory=JspFactory.getDefaultFactory (); response.setContentType (text/html;charset=GB2312); pageContext=_jspxFactory.getPageContext (this,request,response, true,8192,true); application=pageContext.getServletContext (); config=pageContext.getServletConfig (); session=pageContext.getSession (); out=pageContext.getOut (); / / to save space, I removed the comment out.write (\ r\ n) added by the interpreter / / the previous sentence is an out.write (. -- start of the file-- >); out.write (\ r\ n < html >\ r\ n < head >\ r\ n < body >\ r\ n); out.print (output); out.write (\ r\ n < / body >\ r\ n < / head >\ n < / html >\ r\ n);} catch (Throwablet) {if (outdated null buffer size out.getBufferSize ()! = 0) out.clearBuffer () If (pageContextdisabled null) pageContext.handlePageException (t);} finally {if (_ jspxFactoryinvalid null) _ jspxFactory.releasePageContext (pageContext);}

From the above code, you can clearly see how several built-in objects in JSP (out, request, response, session, pageContext, application, config, page) are generated, which can be understood by friends who understand servlet.

Thank you for reading! On "JSP technology how to achieve dynamic pages to static pages" this article is shared here, I hope the above content can be of some help to you, so that you can learn more knowledge, if you think the article is good, you can share it out for more people to see it!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report