Simple Jetty server with JSP supported.
-
public static void main(String[] args) throws Exception {
-
Server server = new Server(8082);
-
-
Configuration.ClassList classlist = Configuration.ClassList.setServerDefault(server);
-
classlist.addBefore("org.eclipse.jetty.webapp.JettyWebXmlConfiguration",
-
"org.eclipse.jetty.annotations.AnnotationConfiguration" );
-
-
WebAppContext context = new WebAppContext("src/main/webapp", "/");
-
server.setHandler(context);
-
server.start();
-
}
pom.xml
-
-
org.eclipse.jetty
-
apache-jsp
-
9.4.2.v20170220
-
-
-
org.eclipse.jetty
-
jetty-annotations
-
9.4.2.v20170220
-
文章标题:EmbededJettywithJSP
文章源于:
http://cdkjz.cn/article/jhddos.html