溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

在MyEclipse 6.5下怎么使用jetty

發(fā)布時間:2021-12-27 17:53:11 來源:億速云 閱讀:101 作者:iii 欄目:編程語言

本篇內(nèi)容介紹了“在MyEclipse 6.5下怎么使用jetty”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

在MyEclipse 6.5下使用jetty的全過程。

環(huán)境:Windows XP + JDK 1.6.11 + MyEclipse 6.5 + jetty-7.0.0pre3

1. 打開myEclipse, 新建java工程Jetty,建立webapps和 logs文件夾(和src同級),在src下建立config、servlet及test文件夾,在webapps建立manage目錄作為web工作目錄。

2. 將${ROOT}\jetty-7.0.0pre3\lib下的三個jar包加入工程的classpath,將${Root}:\jetty-7.0.0pre3\lib\jsp-2.1下的四個jar包加入工程的classpath,copy ${ROOT}\jetty-7.0.0pre3\etc下的jetty.xml, webdefault.xml和realm.properties到src\config下,同時copy ${ROOT}\jetty-7.0.0pre3\contexts下的test.xml到src\config下并改名為manage.xml。

3. 修改jetty.xml, manage.xml,將這些配置文件中帶有jetty.xml、webdefault.xml及realm.properties的路徑改為src\config,并在webapps/manage下新建index.jsp。

4. 在test目錄下新建Start.java,代碼如下:

1 import org.mortbay.jetty.*;
2 
3 import java.io.*;
4 
5 import org.mortbay.jetty.handler.*;
6 
7 import org.mortbay.xml.*;
8 
9 public class start {
10 
11 public static void main(String args[]) {
12 
13 Server server = new Server(8080);
14 
15 server.setHandler(new DefaultHandler());
16 
17 XmlConfiguration cfg = null;
18 
19 try {
20 
21 cfg = new XmlConfiguration(new FileInputStream("./src/com/greysh/config/jetty.xml"));
22 
23 cfg.configure(server);
24 
25 server.start();
26 
27 System.out.println("Jetty Started ...");
28 
29 } catch (FileNotFoundException e) {
30 
31 e.printStackTrace();
32 
33 }
34 
35 catch (IOException e) {
36 
37 e.printStackTrace();
38 
39 } catch (Exception e) {
40 
41 e.printStackTrace();
42 
43 }
44 
45 }
46 
47 }

運行Start類,用IE訪問http://localhost:8080/, 點擊/manage ---> org.mortbay.jetty.webapp.WebAppContext@1275d39{/manage,file:/D:/Program%20Files/MyEclipse%206.5/workspace/Jetty/webapps/manage/} ,此時Jetty就可以成功運行了。

如果要在Jetty中運行servlet,操作過程如下:

<!--[if !supportLists]-->1. <!--[endif]-->在webapps/manage下建立WEB-INF, 并新建web.xml用于配置servlet, 同時將contexts下的webdefalut.xml的內(nèi)容copy到web.xml里。

<!--[if !supportLists]-->2. <!--[endif]-->修改contexts下的manage.xml,在webapps目錄下寫jsp程序,并在servlet目錄下寫相應的servlet處理程序,同時在web.xml里進行配置。

<!--[if !supportLists]-->3. <!--[endif]-->運行Start類,用IE訪問http://localhost:8080/, 點擊/manage ---> org.mortbay.jetty.webapp.WebAppContext@bb05de

到此Jetty運行servlet成功

“在MyEclipse 6.5下怎么使用jetty”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI