Tomcat与jsp

发布于 2024-10-19 07:53:52 字数 59 浏览 0 评论 0原文

如何使用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 技术交流群。

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

发布评论

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

评论(1

秋千易 2024-10-26 07:53:52

一个简单的 JSP 示例可以是这样的

<html>
<head>
<title>Hello World JSP</title>
</head>
<body>
<% out.println("Hello World"); %>
</body>
</html>   

运行这个 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

<html>
<head>
<title>Hello World JSP</title>
</head>
<body>
<% out.println("Hello World"); %>
</body>
</html>   

To run this JSP page
Save the file in c:\Program Files\Tomcat\tomcat-5.5.9\jsp-examples\ as HelloWorld.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

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