共计 1778 个字符,预计需要花费 5 分钟才能阅读完成。
Java Web 项目中 pom.xml 文件初始创建 Jetty 运行环境
1. pom.xml 文件编码设置
<?xml version=”1.0″ encoding=”UTF-8″?>
2. 属性设置
<properties>
<!– 通用属性 –>
<java.version>1.6</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!– Jetty 属性, 保证 Java web 运行环境 –>
<jetty.version>8.1.9.v20130131</jetty.version>
</properties>
3. 依赖设置
<dependencies>
<!– jetty –>
<dependency>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
4. 运行插件设置
<build>
<plugins>
<!– jetty 插件, 设定 context path 与 spring profile –>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>
<systemProperties>
<systemProperty>
<name>spring.profiles.active</name>
<value>development</value>
</systemProperty>
</systemProperties>
<useTestClasspath>true</useTestClasspath>
<webAppConfig>
<contextPath>/${project.artifactId}</contextPath>
</webAppConfig>
</configuration>
</plugin>
</plugins>
</build>
使用 Jetty 作为嵌入式服务器 http://www.linuxidc.com/Linux/2013-07/86983.htm
Jetty 源码分析 http://www.linuxidc.com/Linux/2013-10/90986.htm
Jetty 安装学习并展示 http://www.linuxidc.com/Linux/2014-05/101993.htm
Jetty 在 Eclipse 中的安装 http://www.linuxidc.com/Linux/2013-10/90991.htm
Jetty 的详细介绍 :请点这里
Jetty 的下载地址 :请点这里