且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在JSP技术中,翻译错误与编译错误之间有什么区别?

更新时间:2023-09-15 17:59:46

翻译错误::这种类型的错误是在初始请求期间发生的.首次请求JSP页面并经过 从JSP源文件到相应文件的初始转换 Servlet类文件.

Translation Error : This type of Error occurs during the initial request. When a JSP page is first requested and goes through the initial translation from a JSP source file into a corresponding Servlet class file.

JSP页面翻译:

从JSP源文件生成一个Java servlet文件.这是 繁琐的多阶段生命周期的第一步.在里面 翻译阶段,容器验证句法正确性 JSP页面和标记文件.容器解释标准 指令和操作以及自定义操作引用标记 页面中使用的库.

A java servlet file is generated from the JSP source file. This is the first step in its tedious multiple phase life cycle. In the translation phase, the container validates the syntactic correctness of the JSP pages and tag files. The container interprets the standard directives and actions, and the custom actions referencing tag libraries used in the page.

要了解有关JSP-生命周期的更多信息,请访问 http://javapapers.com/jsp/jsp-life-cycle-explain/

To read more about JSP - Life Cycle visit http://javapapers.com/jsp/jsp-life-cycle-explain/