java服务器页面转换为servlet?
我读到,在网络服务器内部,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它是在第一次调用 JSP 时在运行时完成的。一些 Web 服务器还附带 JSP 编译器,允许在构建时执行此操作,这有两个优点:
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 :
当第一次加载 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\
当请求 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.