java websockets 中的 System.out.println 不起作用。
我的目标是用户连接它应该首先发送“欢迎”,然后必须开始聊天。
这是 tomcat7 websockets 聊天示例:
@OnOpen
public void start(Session session,@PathParam("client-id") String clientId) {
nickname = clientId;
this.session = session;
connections.add(this);
System.out.println("welcome");
String message = String.format("* %s %s", nickname, "has joined.");
broadcast(message);
}
但它没有向用户打印“欢迎”。
帮我。