server
package com.chen.server; import com.chen.servlet.GoodbyeServlet; import com.chen.servlet.HelloServlet; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.servlet.ServletContextHandler; import org.eclipse.jetty.servlet.ServletHolder; /** * Created by CHEN on 2016/8/7. */ public class ServletContextServer { public static void main(String[] args) { Server server =new Server(8080); ServletContextHandler context=new ServletContextHandler(ServletContextHandler.SESSIONS); context.setContextPath("/"); server.setHandler(context); context.addServlet(new ServletHolder(new HelloServlet()),"/hello"); context.addServlet(new ServletHolder(new GoodbyeServlet()),"/goodbye"); try { server.start(); server.join(); } catch (Exception e) { e.printStackTrace(); } } }pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.chen</groupId> <artifactId>test_jetty</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <name>test_jetty</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet --> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>9.3.11.v20160721</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>