Jetty做爲嵌入式服務器使用代碼實例

易嵌入性

Jetty 設計之初就是做爲一個優秀的組件來設計的,這也就意味着 Jetty 能夠很是容易的嵌入到 應用程序當中而不須要程序爲了使用 Jetty 作修改。從某種程度上,你也能夠把 Jetty 理解爲一個 嵌入式的Web服務器。
Jetty 能夠做爲 嵌入式服務器使用,Jetty的運行速度較快,並且是輕量級的,能夠在Java中能夠從test case中控制其運行。從而能夠使 自動化測試再也不依賴外部環境,順利實現自動化測試。

Java代碼

//代碼:以嵌入模式啓動Jetty
import org.mortbay.http.HttpContext;
import org.mortbay.http.HttpServer;
import org.mortbay.http.SocketListener;
import org.mortbay.http.handler.ResourceHandler;
public class JettySample {
public static void main(String[] args) throws Exception {
// 建立Jetty HttpServer對象
HttpServer server = new HttpServer();
// 在端口8080上給HttpServer對象綁上一個listener,使之可以接收 HTTP請求
SocketListener listener = new SocketListener();
listener.setPort(8080);
server.addListener(listener);
// 建立一個HttpContext,處理HTTP請求。
HttpContext context = new HttpContext();
// 用setContextPath把Context映射到(/web)URL上。
context.setContextPath("/web");
// setResourceBase方法設置文檔目錄以提供資源
context.setResourceBase("C:\\j2sdk1.4.1_05");
// 添加資源處理器到HttpContext,使之可以提供文件系統中的文件
context.addHandler(new ResourceHandler());
server.addContext(context);
// 啓動服務器
server.start();
}
}
須要的jar包:
commons-logging.jar
javax.servlet.jar
org.mortbay.jetty.jar
org.mortbay.jmx.jar
jetty還有對應maven插件
maven pom文件的設置:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.10</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<stopKey>foo</stopKey>
<stopPort>9999</stopPort>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<scanIntervalSeconds>0</scanIntervalSeconds>
<daemon>true</daemon>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
而後直接經過mvn jetty:run命令就能直接啓動
-----------------------------------------------------------------------------------------
注:
在maven中,用plugin的方式使用jetty,須要改動maven的setting.xml文件,才能夠使用命令mvn jetty:run.
setting.xml中找到標籤<pluginGroups>,增長:
<pluginGroup>org.mortbay.jetty</pluginGroup>
相關文章
相關標籤/搜索