java服务器页面转换为servlet?

发布于 2024-10-18 13:52:39 字数 61 浏览 0 评论 0原文

我读到,在网络服务器内部,jsp 页面被转换为 servlet。这种转换什么时候发生?我必须运行特定命令吗?

i read that inside the webserver a jsp page is converted to a servlet. When does this conversion happen ? Do i have to run a specific command ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

伪装你 2024-10-25 13:52:39

它是在第一次调用 JSP 时在运行时完成的。一些 Web 服务器还附带 JSP 编译器,允许在构建时执行此操作,这有两个优点:

  1. 它允许在构建时而不是运行时检测 JSP 语法错误
  2. 避免第一次调用时间损失(将 JSP 编译为 Java 需要一些时间)然后 Java 到字节码)。

It's done at runtime, when the JSP is invoked for the first time. Some web servers also come with a JSP compiler allowing to do that at build time, which has two advantages :

  1. It allows detecting JSP syntax errors at build time rather than runtime
  2. It avoids the first invocation time penalty (it takes some time compiling JSP to Java and then Java to bytecode).
只想待在家 2024-10-25 13:52:39

当第一次加载 JSP 页面时,JSP 页面会在运行时自动转换为 servlet。
在 Apache TomCat 服务器上,当加载 JSP 页面时,您可以在目录的 \work 中看到自动生成的 .java.class 文件。 TomCat 服务器。


例如,如果您的 test.jsp 文件位于
\Apache Software Foundation\Tomcat 5.5\webapps\jsp\
您可以在
找到转换后的 servlet(.java.class 文件)
\Apache Software Foundation\Tomcat 5.5\work\Catalina\localhost\jsp\org\apache\jsp\

A JSP page is automatically converted to a servlet at runtime when the JSP page is loaded for the first time.
On Apache TomCat server, when a JSP page is loaded you can see the autogenerated .java and .class files in the \work directory of the TomCat server.


If for example your test.jsp file is at
\Apache Software Foundation\Tomcat 5.5\webapps\jsp\
you can find the converted servlet (.java and .class files) at
\Apache Software Foundation\Tomcat 5.5\work\Catalina\localhost\jsp\org\apache\jsp\

戒ㄋ 2024-10-25 13:52:39

当请求 JSP 页面时,这会自动为您完成,因此您无需运行命令。有时可以预编译 JSP 等,但这不是必需的。

本页解释了 JSP 页面的生命周期。

This is done automatically for you when the JSP page is requested so you do not have to run a command. Sometimes it is possible to pre-compile your JSPs and so on but it is not a requirement.

This page explains the lifecycle of the JSP page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文