在tomcat下運行servlet,需要在web.xml文件中對servlet進行配置,下面用一個具體的例子一步一步來看一下整個過程。 1:首先創(chuàng)建一個web應用程序,這里我是用Eclipse建的,就叫web吧,存放路徑C:\eclipse\workspace\web 2:tomcat中,添加conf下的server.xml中的<Context >標記 <Context path="/web" reloadable="true" docBase="C:\Eclipse\workspace\web"/> 3:編寫一個名為ServletTest的servlet程序,具體內容如下,應該很簡單的,就不多解釋: package test; import javax.servlet.ServletException; public class ServletTest extends HttpServlet{ } 4:將servlet編譯后生成的class文件放到WEB-INF的class目錄下,因為我這里帶了個test包,所以生成的文件路徑就是WEB-INF----->class----->test------>ServletTest.class 5:配置web.xml文件,在web應用程序的WEB-INF目錄下,新建一個如下內容的web.xml文件 <?xml version="1.0" encoding="Shift_JIS"?> <!DOCTYPE web-app 這里解釋一下這個文件的內容: <servlet-name>標簽指定了servlet的名字,主要是下面的<servlet-mapping>用; <servlet-class>說明了servlet存放的class目錄下的位置,這里要加上必要的包名; < servlet-mapping>標簽中,<servlet-name>指出要要匹配的servlet的名字,這個與上邊的< servlet>標簽中定義的名字對應;<url-pattern>指出了當滿足什么條件時,調用這個servlet;這里寫的是 /ServletTest 6:啟動tomcat,并在瀏覽器中輸入http://localhost:8090/web/ServletTest 則瀏覽器輸出TEST 這里主要想說的就是<url-pattern>,這個標簽指定了servlet的匹配類型,當寫成 <url-pattern>/*</url-pattern>時,瀏覽器中輸入http://localhost:8090/web/1111或者http://localhost:8090/web/2222,都會執(zhí)行這個servlet Addationally, some tips should be noted when developing with eclipse: when you build a web project and edit the web.xml under the WebContent/WEB-INF derectory, the below mapping formet: <servlet-mapping> <servlet-name>DemoServlet</servlet-name> <url-pattern>/DemoServlet</url-pattern> </servlet-mapping> corresponsing to the real url: UrlToYouAppRoot/DemoServlet. So you should refers to this url (or it‘s relative path) in other pages when you call the servlet. |
|
來自: tinaroad > 《WebRalation》