1

阅读http://www.jamesward.com/2011/08/23/war-less-java-web-apps上关于如何在您的应用程序中嵌入应用服务器的文章,我注意到了这段代码。

package foo;

import java.io.File;
import java.net.URL;
import java.util.jar.Attributes;
import java.util.jar.JarFile;

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.handler.*;
import org.eclipse.jetty.util.StringUtil;
import org.eclipse.jetty.webapp.WebAppContext;

public class Main
{

  public static 9900;">);
    out.close();
  }
}

Main 类在做什么,因为我不理解该语法。

4

3 回答 3

6

我看到了,所以它一定是你的浏览器的问题。

package foo;

import java.io.File;
import java.net.URL;
import java.util.jar.Attributes;
import java.util.jar.JarFile;

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.handler.*;
import org.eclipse.jetty.util.StringUtil;
import org.eclipse.jetty.webapp.WebAppContext;

public class Main
{

  public static void main(String[] args) throws Exception
  {
    String webappDirLocation = "src/main/webapp/";

    Server server = new Server(8080);
    WebAppContext root = new WebAppContext();

    root.setContextPath("/");
    root.setDescriptor(webappDirLocation + "/WEB-INF/web.xml");
    root.setResourceBase(webappDirLocation);

    root.setParentLoaderPriority(true);

    server.setHandler(root);

    server.start();
    server.join();
  }
}
于 2012-07-16T09:44:02.473 回答
4

这是不可编译的源代码

您提供的链接中也没有此类源代码

于 2012-07-16T09:42:00.240 回答
2
 public static 9900;">);

以上不是合法代码,可能是您的浏览有问题。反正你用的是什么浏览器......

于 2012-07-16T09:47:37.007 回答