jetty快速入门与嵌入使用 jetty

来源:互联网 发布:大数据金融行业的应用 编辑:程序博客网 时间:2024/04/28 06:29

原文出处:http://blog.chenlb.com/2009/01/quick-start-jetty-and-embed-in-project.html

看到开源项目发布的时候都带一个 jsp 容器(jetty)。拿来做 demo、开发、调试的服务器还是很不错的。今天就小试下,主要把它运行起来。

第一步下载:http://dist.codehaus.org/jetty/jetty-6.1.14/jetty-6.1.14.zip 是目前最新的稳定版。解压到如E:\jetty-6.1.14,其中比较重要的目录是:etc、contexts、webapps。个人认为可以类比tomcat的conf、conf\Catalina\localhost、webapps目录。contexts是热部署用的。

试运行下,可以把一个简单的web项目到到webapps目录下,或是*.war,如:web-demo(或web-demo.war)放到webapps目录下。

E:\jetty-6.1.14>java -jar start.jar2009-01-13 15:34:38.937::INFO: Logging to STDERR via org.mortbay.log.StdErrLog2009-01-13 15:34:39.265::INFO: jetty-6.1.142009-01-13 15:34:39.421::INFO: Deploy E:\jetty-6.1.14\contexts\javadoc.xml -> org.mortbay.jetty.handler.ContextHandler@15cda3f{/javadoc,file:/E:/jetty-6.1.14/javadoc/}...2009-01-13 15:35:01.828::INFO: Opened E:\jetty-6.1.14\logs\2009_01_13.request.log2009-01-13 15:35:01.953::INFO: Started SelectChannelConnector@127.0.0.1:8080

打开:http://localhost:8080/web-demo ,恩有结果了。

如果不把web-demo放到webapps目录下也可,在contexts目录下建立一个文件告诉jetty就行了。可以在contexts目录下复制test.xml为web-demo.xml,然后修改如下:

1.<?xml version="1.0" encoding="ISO-8859-1"?>  2.<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">  3.  4.<Configure class="org.mortbay.jetty.webapp.WebAppContext">  5.  6.    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->  7.    <!-- Required minimal context configuration : -->  8.    <!-- + contextPath -->  9.    <!-- + war OR resourceBase -->  10.    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->  11.    <Set name="contextPath">/web-demo</Set>  12.    <Set name="war">e:/workspace/web-demo/WebContent</Set>  13.  14.    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->  15.    <!-- Optional context configuration -->  16.    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->  17.    <Set name="extractWAR">false</Set>  18.    <Set name="copyWebDir">false</Set>  19.    <Set name="defaultsDescriptor">  20.        <SystemProperty name="jetty.home" default="." />/etc/webdefault.xml</Set>  21.    <!--   22.        <Set name="overrideDescriptor"><SystemProperty name="jetty.home"  23.        default="."/>/contexts/test.d/override-web.xml</Set>  24.    -->  25.</Configure>  

war可以设置成绝对路径。然后再重启jetty试试看。好了, 对jetty的初步认识到这里。

原创粉丝点击