有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!


共 (2) 个答案

  1. # 1 楼答案

    我想this may be of interest

    The following code from SimplestServer.java instantiates and runs the simplest possible Jetty server:

    public class SimplestServer
    {
        public static void main(String[] args) throws Exception
        {
            Server server = new Server(8080);
            server.start();
            server.join();
        }
    }