001: 徒手創建一個JavaWeb應用

不借助IDE,咱們徒手創建一個JavaWeb應用。html

web.xml:java

1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <web-app xmlns="http://java.sun.com/xml/ns/javaee"
3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
5                       http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
6                      
7 </web-app>

index.jsp:web

1 <%@ page contentType="text/html;charset=utf-8"%>
2 <html>
3     <head>
4         <title>徒手創建javaweb應用</title>
5     </head>
6     <body>
7         hello world
8     </body>
9 </html>

而後將整個項目文件夾拷貝到tomcat_home\webapps\目錄下,並啓動tomcat,瀏覽器輸入http://localhost:8080/webDemo獲得:瀏覽器

相關文章
相關標籤/搜索