为什么我的聊天服务器的servlet的doPost方法不叫?(Why is my chat serv

2019-10-20 14:40发布

我设计在Java中的聊天服务器。 通信是基于HTTP的,而不是基于套接字的。 在客户端我有一个小程序。 在服务器端我有一个servlet。

小程序:我创建了一个新的线程来监听传入消息(GET方法)。 主线程用于发送消息(POST消息)。

部分代码是:

public void start() {
    System.out.println("Creating new thread");
    Thread thread = new Thread(this);
    thread.start();
}

private String getNewMessage() {
    System.out.println("Inside getNewMessage");
    String msg = null;
    try {
        while(msg == null) {
            System.out.println("Trying to listen to servlet");
            URL servlet = new URL(getCodeBase(), "NewServlet?mode=msg");
            URLConnection con = servlet.openConnection();

            con.setUseCaches(false);

            DataInputStream din = new DataInputStream(new BufferedInputStream(con.getInputStream()));
            msg = din.readUTF();
            System.out.println("message read :" + msg);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return msg + "\n";
}
public void run() {
    System.out.println("Inside new thread");
    while(true) {
        System.out.println("inside first while");
        String newMsg = getNewMessage();
        chatOutput.append(newMsg);
        System.out.println("Appended!!");
    }
}
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    String message = chatInput.getText();
    chatInput.setText("");
    chatOutput.append(message + "\n");
    try {
        System.out.println("Trying to send msg :" + message);
        URL url = new URL(getCodeBase(), "NewServlet");
        URLConnection servletConnection = url.openConnection();

        servletConnection.setDoInput(true);
        servletConnection.setDoOutput(true);
        servletConnection.setUseCaches(false);
        servletConnection.setRequestProperty("Content-Type", "application/octet-stream");

        ObjectOutputStream out = new ObjectOutputStream(servletConnection.getOutputStream());
        out.writeObject(message);
        out.flush();
        out.close();

        System.out.println("Message sent!");
    } catch (Exception e) {
        e.printStackTrace();
    }

}

这接下来的代码是从servlet的一面。 它采用了可观察到界面识别和发送消息给客户。

public class NewServlet extends HttpServlet {
// getNextMessage() returns the next new message.  // It blocks until there is one.
public String getNextMessage() {
// Create a message sink to wait for a new message from the
// message source.
  System.out.println("inside getNextMessage");
return new MessageSink().getNextMessage(source);}

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
    System.out.println("Inside Doget");
    response.setContentType("text/plain");
    PrintWriter out = response.getWriter();

    out.println(getNextMessage());
} 

// broadcastMessage() informs all currently listening clients that there
// is a new message. Causes all calls to getNextMessage() to unblock.
public void broadcastMessage(String message) {
// Send the message to all the HTTP-connected clients by giving the
// message to the message source
source.sendMessage(message);  }
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
    System.out.println("Inside DoPost");
    try {
    ObjectInputStream din= new ObjectInputStream(request.getInputStream());
    String message = (String)din.readObject();

        System.out.println("received msg");
    if (message != null) broadcastMessage(message);
        System.out.println("Called broadcast");
// Set the status code to indicate there will be no response
    response.setStatus(response.SC_NO_CONTENT);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

/** 
 * Returns a short description of the servlet.
 * @return a String containing servlet description
 */
@Override
public String getServletInfo() {
    return "Short description";
}

MessageSource source = new MessageSource();}

class MessageSource extends Observable {
public void sendMessage(String message) {
  System.out.println("inside sendMsg");
setChanged();
notifyObservers(message);
}
}

class MessageSink implements Observer {
String message = null;  // set by update() and read by getNextMessage()
// Called by the message source when it gets a new message
synchronized public void update(Observable o, Object arg) {
// Get the new message
message = (String)arg;
// Wake up our waiting thread
notify();
}
// Gets the next message sent out from the message source
synchronized public String getNextMessage(MessageSource source) {
// Tell source we want to be told about new messages
source.addObserver(this);
  System.out.println("AddedObserver");
// Wait until our update() method receives a message
while (message == null) {
  try { wait(); } catch (Exception ignored) { }
}
// Tell source to stop telling us about new messages
source.deleteObserver(this);
// Now return the message we received
// But first set the message instance variable to null
// so update() and getNextMessage() can be called again.
String messageCopy = message;
message = null;
  System.out.println("Returning msg");
return messageCopy;
}
}

正如你可以看到我已经包括的System.out.println(“一些信息”); 在一些地方。 这只是用于调试目的。 在Java控制台,我得到下面的输出:

创建新的线程
里面新的线程。
里面也先。
里面getNewMessage。
想要听的servlet。

Servlet的一面,我得到在tomcat日志输出如下:

里面的doGet。
里面getNextMessage。
AddedObserver。

之后,我在applet键入消息,并发送,我得到的Java控制台输出如下:

要发送的信息:你DER?
消息已发送!

但在servlet的一面, 我不获取日志中的任何东西 。 我用O'Reily的Java Servlet编程为基准(Observer接口来自那里)。 但我没有得到两个客户端之间的聊天通信。 如可以从日志可以理解的, doPOST方法不被调用。 ,这是什么原因呢?

Answer 1:

我通过在该小程序侧发送的消息后接收到消息(状态消息)固定的问题。 在servlet侧,在doPost方法,我发送的状态信息( "1" ),读出消息之后。

我不知道究竟怎么了这解决了问题,但我想,既然我有setDoInput(true); ,它正在等待一些消息阅读。

无论如何,好消息是,我已经至少有上述调试过程中所需的结果。

此外,有必要使用ObjectInputStream代替DataInputStreamgetNewMessage方法(因为该消息是由ObjectOutputStream的发送)。 现在聊天服务器工作的顺利进行。



文章来源: Why is my chat server servlet's doPost method not called?