码迷,mamicode.com
首页 > 编程语言 > 详细

JSP文件转换成为JAVA文件后的结构

时间:2015-05-06 21:11:22      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

public final class zzz_jsp extends HttpJspBase implements JspSourceDependent{
    
    public void _jspInit(){
        
    }
    
    
    public void _jspDestroy(){
        
    }
    
    
    public void _jspService( HttpServletRequest request, HttpServletResponse response ) throws Exception {

        final PageContext pageContext;
        HttpSession session = null;
        final ServletContext application;
        final ServletConfig config;
        JspWriter out = null;
        final Object page = this;
        JspWrite _jspx_out = null;
        PageContext _jspx_page_context = null;
        
        response.setContentType( "text/html; charset=UTF-8" );
        pageContext =  factory.getPageContext(this, request, response, ... );
        _jspx_page_context =  pageContext;
        
        application = pageContext.getServletContext();
        config = pageContext.getServletConfig();
        session = pageContext.getSession();
        out = pageContext.getOut();
        _jspx_out = out;
        
        
    }
}

JSP文件转换成为JAVA文件后的结构

标签:

原文地址:http://www.cnblogs.com/wangdapeng/p/4483019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!