Tomcat与jsp
如何使用tomcat编译并运行jsp页面。我应该把我的jsp页面放在哪里。我必须将其放置在哪个文件夹中。
How can i compile and run jsp pages using tomcat. Where should i place my jsp page. In which folder i have to placed it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的 JSP 示例可以是这样的
运行这个 JSP 页面
将
c:\Program Files\Tomcat\tomcat-5.5.9\jsp-examples\
中的文件另存为HelloWorld.jsp
启动 TomCat 服务器。
在网络浏览器的地址栏中输入以下
URL
。http://localhost:8080/jsp-examples/helloworld.jsp
JSP 页面将显示在 Web 浏览器中。
JSP 页面由 JSP 引擎内部转换为 servlet。该 servlet 的源文件可以在 TomCat 的
\work
目录中找到。有关 JSP 如何工作以及它与 Servlet 有何不同的更多信息,请查看此
JSF、Servlet 和 JSP 之间有什么区别?
另请看一下
JSP/Servlet 的隐藏功能
A simple example of JSP can be like this
To run this JSP page
Save the file in
c:\Program Files\Tomcat\tomcat-5.5.9\jsp-examples\
asHelloWorld.jsp
Start the TomCat Server.
Type the following
URL
in the address bar of your web browser.http://localhost:8080/jsp-examples/helloworld.jsp
The JSP page will be displayed in the web browser.
A JSP page is converted to a servlet internally by the JSP Engine.And the source file for that servlet can be found at
\work
directory in TomCat.For more information on how JSP works and how it is different from Servlet take a look at this
What is the difference between JSF, Servlet and JSP?
Also Take a look at
Hidden features of JSP/Servlet