jsp運行原理
阿新 • • 發佈:2017-07-25
ets syn 查詢 first recompile 方法 alt log con
進一步判斷是否要進行編譯jsp文件
下面由JspServletWraper service方法
if (options.getDevelopment() || firstTime ) {
synchronized (this) {
if (firstTime) {
firstTime = false;
}
// The following sets reload to true, if necessary
ctxt.compile();
}
}
再到JspCompilationContext.compile()方法
if (isPackagedTagFile || jspCompiler.isOutDated()) {
才編譯
在服務器運行的時候,當去訪問一個jsp頁面的時候,任何一個jsp文件都會轉化為servlet,在tomcat服務器安裝目錄下會生成jsp文件名+_jsp.java的源文件,這個java文件將會被編譯為class文件,當請求jsp頁面時,Tomcat會分派給JspServlet來處理,在 jspServlet的方法 service()中有一句
boolean precompile = preCompile(request);
它會判斷你請求jsp頁面時有沒有帶?jsp_precompile查詢字符串,如果帶了就會重新編譯
然後再由
serviceJspFile(request, response, jspUri, null, precompile);
進一步判斷是否要進行編譯jsp文件
下面由JspServletWraper service方法
if (options.getDevelopment() || firstTime ) {
synchronized (this) {
if (firstTime) {
firstTime = false;
}
// The following sets reload to true, if necessary
ctxt.compile();
}
}
再到JspCompilationContext.compile()方法
if (isPackagedTagFile || jspCompiler.isOutDated()) {
才編譯
jsp運行原理