Java中websocket消息推送的实现代码

2025-05-29 0 98

一.服务层

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89
package com.demo.websocket;

import java.io.IOException;

import java.util.Iterator;

import java.util.concurrent.ConcurrentLinkedQueue;

import javax.servlet.ServletContextEvent;

import javax.servlet.ServletContextListener;

import org.springframework.context.annotation.Configuration;

import org.springframework.web.socket.CloseStatus;

import org.springframework.web.socket.TextMessage;

import org.springframework.web.socket.WebSocketSession;

import org.springframework.web.socket.config.annotation.EnableWebSocket;

import org.springframework.web.socket.config.annotation.WebSocketConfigurer;

import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry;

import org.springframework.web.socket.handler.TextWebSocketHandler;

@Configuration

@EnableWebSocket

public class websocketListener implements WebSocketConfigurer, ServletContextListener{

private ConcurrentLinkedQueue<WebSocketSession> sessions = new ConcurrentLinkedQueue<WebSocketSession>();

private WebSocketHandlerTest handler;

@Override

public void contextDestroyed(ServletContextEvent arg0) {

// TODO Auto-generated method stub

}

@Override

public void contextInitialized(ServletContextEvent arg0) {

// TODO Auto-generated method stub

}

@Override

public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {

handler = new WebSocketHandlerTest();

registry.addHandler(handler, "/ws/notifymessage.ws");

registry.addHandler(handler, "/ws/sockjs/notifymessage.ws").withSockJS();

new Thread(handler).start();

}

class WebSocketHandlerTest extends TextWebSocketHandler implements Runnable{

@Override

public void afterConnectionClosed(WebSocketSession session, CloseStatus status) throws Exception {

sessions.remove(session);

}

@Override

public void afterConnectionEstablished(WebSocketSession session) throws Exception {

sessions.add(session);

}

@Override

protected void handleTextMessage(WebSocketSession session, TextMessage message) throws Exception {

super.handleTextMessage(session, message);

}

@Override

public void run() {

System.out.println("等待推送....");

try {

int i = 0;

for (;;) {

synchronized (this) {

try {

Thread.sleep(3000);

} catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

if(i%10==0){

nofity("消息推送测试......");

System.out.println("推送消息了....");

}else{

System.out.println("本次不推送消息了....");

}

i++;

}

} catch (IOException e) {

e.printStackTrace();

System.out.println("失败....");

}

}

private void nofity(String message) throws IOException {

Iterator<WebSocketSession> iterator = sessions.iterator();

while (iterator.hasNext()) {

WebSocketSession session = iterator.next();

synchronized(session){

if(session.isOpen()){

session.sendMessage(new TextMessage(message));

}else{

iterator.remove();

}

}

}

}

}

}

二.前台界面监听

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29
<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

</head>

<body>

websocket测试界面

</body>

<script type="text/javascript">

var websocketPath = "localhost:8080/demo-web";

if ('WebSocket' in window) {

websocket = new WebSocket("ws://"+websocketPath+"/ws/notifymessage.ws");

} else if ('MozWebSocket' in window) {

websocket = new MozWebSocket("ws://"+websocketPath+"/ws/notifymessage.ws");

} else {

websocket = new SockJS("ws://"+websocketPath+"/ws/notifymessage.ws");

}

websocket.onopen = function (evnt) {

};

websocket.onmessage = function (evnt) {

console.log(evnt);

};

websocket.onerror = function (evnt) {

};

websocket.onclose = function (evnt) {

}

</script>

</html>

注意web.xml中配置DispatcherServlet控制器

spring-servlet.xml空文件

?

1

2

3

4

5

6

7

8

9

10

11

12

13
<servlet>

<servlet-name>spring</servlet-name>

<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

<init-param>

<param-name>contextConfigLocation</param-name>

<param-value>/WEB-INF/spring-servlet.xml</param-value>

</init-param>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>spring</servlet-name>

<url-pattern>*.ws</url-pattern>

</servlet-mapping>

以上所述是小编给大家介绍的Java中websocket消息推送的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对快网idc网站的支持!

原文链接:http://www.cnblogs.com/tianzhongshan/archive/2017/02/13/6392752.html

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 Java中websocket消息推送的实现代码 https://www.kuaiidc.com/119205.html

相关文章

发表评论
暂无评论