多线程java webserver

时间:2014-04-02 18:45:19

标签: java multithreading sockets webserver

我正在编写服务器代码,这就是它现在的样子:

import java.net.ServerSocket;
import java.net.Socket;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.InputStreamReader;
import java.io.BufferedReader;

public class HttpServer {

    public static void main(String[] args) throws Throwable {
        //http://localhost:3000
        ServerSocket ss = new ServerSocket(3000);

        while (true) {
            //Waiting for socket
            Socket s = ss.accept();
            System.out.println("Client accepted");
            //The main process
            new SocketProcessor(s,ss).start();
        }
    }

    private static class SocketProcessor implements Runnable {
        private Thread t;
        private Socket s;
        private ServerSocket ss;
        private InputStream is;
        private OutputStream os;

        private SocketProcessor(Socket s,ServerSocket ss) throws Throwable {
            t = new Thread(this, "Server Thread");
            this.ss=ss;
            this.s = s;
            this.is = s.getInputStream();
            this.os = s.getOutputStream();
        }

        public void run() {
            try {
                readInputHeaders(); 
                Thread.sleep(10000);
                writeResponse("<html><body><h1>Hello</h1></body></html>");


            } catch (Throwable t) {
                /*do nothing*/
            } finally {
                try {
                    s.close();
                } catch (Throwable t) {

                }
            }
            System.out.println("Client processing finished");
        }


        public void start()
        {
            t.start();
        }

        private void writeResponse(String s) throws Throwable {
            String response = "HTTP/1.1 200 OK\r\n" +
                    "Server: Server\r\n" +
                    "Content-Type: text/html\r\n" +
                    "Content-Length: " + s.length() + "\r\n" +
                    "Connection: close\r\n\r\n";
            String result = response + s;
            os.write(result.getBytes());
            os.flush();
        }

        private void readInputHeaders() throws Throwable {
            BufferedReader br = new BufferedReader(new InputStreamReader(is));
            while(true) {
                String s = br.readLine();
                System.out.println(s);
                if(s == null || s.trim().length() == 0) {
                    break;
                }
            }
        }
    }
}

不是这个

while (true) {
                //Waiting for socket
                Socket s = ss.accept();
                System.out.println("Client accepted");
                //The main process
                new SocketProcessor(s,ss).start();
            } 

让webserver多线程?我试图在浏览器中的2个不同选项卡中运行http://localhost:3000。正如您所看到的,我让我的服务器在响应之前等待10秒,因此每个页面都应该花费相同的时间。但不,它不是:第一个打开的页面需要10,而第二个--20。

出了什么问题?

UPD:我有想法,ss.accept();会冻结服务器。

2 个答案:

答案 0 :(得分:2)

尝试使用不同的浏览器,但这并没有发生。你像我一样使用铬? 可能是chrome为同样的请求做了一些奇怪的事情。

请注意,我

http://localhost:3000

http://localhost:3000?diff=true

我在10秒内得到它们,而不是10和20得到同样的请求。

我仍然希望有人来解释这个,但也许这是另一个问题。

答案 1 :(得分:1)

哦,我知道发生了什么,你是在一个浏览器中打开两个标签并连接到你的程序吗?因此,可能是您的浏览器正在序列化您的请求。

如果您打开两个浏览器并发出请求,您的程序将按预期工作。