1. 程式人生 > 其它 >執行第一個JSP檔案

執行第一個JSP檔案

技術標籤:jsptomcatweb

一、建立資料夾

在tomcat資料夾裡的webapps資料夾下新建一個名為my的資料夾

二、編寫程式

在\webapps\my下新建一個jsp檔案,例如命名為one.jsp
內容為

<html>
	<body>
		<p>Hello, this is my first jsp page!</p>
	</body>
</html>

三、啟動Tomcat伺服器

四、在瀏覽器中輸入http://localhost:8080/my/one.jsp

在這裡插入圖片描述