当前位置:   article > 正文

Websocket-通过Java开发Websocket教程演示与介绍_java websocketjiaoc

java websocketjiaoc
  • 效果

    如图所示,当服务端有新的比特币价格后,浏览器马上就可以看到最新的数据。
  • WebSocket概念

    在WebSocket概念出来之前,如果页面要不停地显示最新的价格,那么必须不停地刷新页面,或者用一段js代码每隔几秒钟发消息询问服务器数据。 
    而使用WebSocket技术之后,当服务器有了新的数据,会主动通知浏览器。 如效果所示,当服务端有新的比特币价格之后,浏览器立马接收到消息。
  • 优点

    1. 节约带宽。 不停地轮询服务端数据这种方式,使用的是http协议,head信息很大,有效数据占比低, 而使用WebSocket方式,头信息很小,有效数据占比高。
    2. 无浪费。 轮询方式有可能轮询10次,才碰到服务端数据更新,那么前9次都白轮询了,因为没有拿到变化的数据。 而WebSocket是由服务器主动回发,来的都是新数据。
    3. 实时性,考虑到服务器压力,使用轮询方式不可能很短的时间间隔,否则服务器压力太多,所以轮询时间间隔都比较长,好几秒,设置十几秒。 而WebSocket是由服务器主动推送过来,实时性是最高的
  • Tomcat版本

    旧版本的Tomcat 不能支持WebSocket, 至少需要 7.0.47 以上才可以
  • 首先创建动态Web项目

    菜单->File->New->Other->Web->Dynamic Web Project
  • 复制jar

    为了支持WebSocket,需要引入javaee-api-7.0.jar, 下载后放进WEB-INF/lib 目录下
  • BitCoinServer

    创建BitCoinServer类,用注解@ServerEndpoint("/ws/bitcoinServer")把它标记为一个WebSocket Server
    ws/bitcoinServer 表示有通过这个地址访问该服务

    OnOpen 表示有浏览器链接过来的时候被调用
    OnClose 表示浏览器发出关闭请求的时候被调用
    OnMessage 表示浏览器发消息的时候被调用
    OnError 表示有错误发生,比如网络断开了等等

    sendMessage 用于向浏览器回发消息

    其中OnOpen发生的时候,即有链接过来的时候,会把当前WebSocket Server丢在ServerManager里管理起来,这样Tomcat才知道总共有哪些Server, 方便以后进行群发
    1. package com.how2java.bitcoin;
    2. import java.io.IOException;
    3. import javax.websocket.OnClose;
    4. import javax.websocket.OnError;
    5. import javax.websocket.OnMessage;
    6. import javax.websocket.OnOpen;
    7. import javax.websocket.Session;
    8. import javax.websocket.server.ServerEndpoint;
    9. /**
    10. * @ServerEndpoint 注解是一个类层次的注解,它的功能主要是将目前的类定义成一个websocket服务器端,
    11. * 注解的值将被用于监听用户连接的终端访问URL地址,客户端可以通过这个URL来连接到WebSocket服务器端
    12. */
    13. @ServerEndpoint("/ws/bitcoinServer")
    14. public class BitCoinServer {
    15. //与某个客户端的连接会话,需要通过它来给客户端发送数据
    16. private Session session;
    17. @OnOpen
    18. public void onOpen(Session session){
    19. this.session = session;
    20. ServerManager.add(this);
    21. }
    22. public void sendMessage(String message) throws IOException{
    23. this.session.getBasicRemote().sendText(message);
    24. }
    25. @OnClose
    26. public void onClose(){
    27. ServerManager.remove(this);
    28. }
    29. @OnMessage
    30. public void onMessage(String message, Session session) {
    31. System.out.println("来自客户端的消息:" + message);
    32. }
    33. @OnError
    34. public void onError(Session session, Throwable error){
    35. System.out.println("发生错误");
    36. error.printStackTrace();
    37. }
    38. }
  • ServerManager

    ServerManager 中维护了一个线程安全的集合servers, 用于因为浏览器发起连接请求而创建的BitCoinServer. 
    broadCast 方法遍历这个集合,让每个Server向浏览器发消息。
    其他方法很简单,不赘述
    1. package com.how2java.bitcoin;
    2. import java.io.IOException;
    3. import java.util.ArrayList;
    4. import java.util.Collection;
    5. import java.util.Collections;
    6. public class ServerManager {
    7. private static Collection<BitCoinServer> servers = Collections.synchronizedCollection(new ArrayList<BitCoinServer>());
    8. public static void broadCast(String msg){
    9. for (BitCoinServer bitCoinServer : servers) {
    10. try {
    11. bitCoinServer.sendMessage(msg);
    12. } catch (IOException e) {
    13. // TODO Auto-generated catch block
    14. e.printStackTrace();
    15. }
    16. }
    17. }
    18. public static int getTotal(){
    19. return servers.size();
    20. }
    21. public static void add(BitCoinServer server){
    22. System.out.println("有新连接加入! 当前总连接数是:"+ servers.size());
    23. servers.add(server);
    24. }
    25. public static void remove(BitCoinServer server){
    26. System.out.println("有连接退出! 当前总连接数是:"+ servers.size());
    27. servers.remove(server);
    28. }
    29. }
  • BitCoinDataCenter

    创建BitCoinDataCenter,使其继承HttpServlet.
    标记为Servlet不是为了其被访问,而是为了便于伴随Tomcat一起启动,因为可以通过loadOnStartup一起就启动了
    这个类实现了Runnable,可以在初始化方法里创建一个线程并调用之。
    run 方法: 每个1-3秒就创建一个新价格,然后根据当前有多少人链接过来,进行调整价格,接着通过ServerManager广播出去。 这样浏览器就看到如如图所示的效果了

    1. package com.how2java.bitcoin;
    2. import java.util.Random;
    3. import javax.servlet.ServletConfig;
    4. import javax.servlet.annotation.WebServlet;
    5. import javax.servlet.http.HttpServlet;
    6. @WebServlet(name="BitCoinDataCenter",urlPatterns = "/BitCoinDataCenter",loadOnStartup=1) //标记为Servlet不是为了其被访问,而是为了便于伴随Tomcat一起启动
    7. public class BitCoinDataCenter extends HttpServlet implements Runnable{
    8. public void init(ServletConfig config){
    9. startup();
    10. }
    11. public void startup(){
    12. new Thread(this).start();
    13. }
    14. @Override
    15. public void run() {
    16. int bitPrice = 100000;
    17. while(true){
    18. //每隔1-3秒就产生一个新价格
    19. int duration = 1000+new Random().nextInt(2000);
    20. try {
    21. Thread.sleep(duration);
    22. } catch (InterruptedException e) {
    23. // TODO Auto-generated catch block
    24. e.printStackTrace();
    25. }
    26. //新价格围绕100000左右50%波动
    27. float random = 1+(float) (Math.random()-0.5);
    28. int newPrice = (int) (bitPrice*random);
    29. //查看的人越多,价格越高
    30. int total = ServerManager.getTotal();
    31. newPrice = newPrice*total;
    32. String messageFormat = "{\"price\":\"%d\",\"total\":%d}";
    33. String message = String.format(messageFormat, newPrice,total);
    34. //广播出去
    35. ServerManager.broadCast(message);
    36. }
    37. }
    38. }
  • index.jsp

    在WebContent下创建index.jsp
    主要代码讲解:
    1. 判断浏览器是否支持WebSocket
     if ('WebSocket' in window) {

    2. 接受服务器回发的消息
    1. websocket.onmessage = function (event) {
    2. setMessageInnerHTML(event.data);
    3. }
    1. <%@ page language="java" pageEncoding="UTF-8" %>
    2. <!DOCTYPE html>
    3. <html>
    4. <head>
    5. <title>用WebSocket实时获知比特币价格</title>
    6. </head>
    7. <body>
    8. <div style="width:400px;margin:20px auto;border:1px solid lightgray;padding:20px;text-align:center;">
    9. 当前比特币价格:¥<span style="color:#FF7519" id="price">10000</span>
    10. <div style="font-size:0.9em;margin-top:20px">查看的人数越多,价格越高, 当前总共 <span id="total">1</span> 个人在线</div>
    11. <div style="color:silver;font-size:0.8em;margin-top:20px">以上价格纯属虚构,如有雷同,so what?</div>
    12. </div>
    13. </body>
    14. <script type="text/javascript">
    15. var websocket = null;
    16. //判断当前浏览器是否支持WebSocket
    17. if ('WebSocket' in window) {
    18. websocket = new WebSocket("ws://localhost:8080/bitcoin/ws/bitcoinServer");
    19. //连接成功建立的回调方法
    20. websocket.onopen = function () {
    21. websocket.send("客户端链接成功");
    22. }
    23. //接收到消息的回调方法
    24. websocket.onmessage = function (event) {
    25. setMessageInnerHTML(event.data);
    26. }
    27. //连接发生错误的回调方法
    28. websocket.onerror = function () {
    29. alert("WebSocket连接发生错误");
    30. };
    31. //连接关闭的回调方法
    32. websocket.onclose = function () {
    33. alert("WebSocket连接关闭");
    34. }
    35. //监听窗口关闭事件,当窗口关闭时,主动去关闭websocket连接,防止连接还没断开就关闭窗口,server端会抛异常。
    36. window.onbeforeunload = function () {
    37. closeWebSocket();
    38. }
    39. }
    40. else {
    41. alert('当前浏览器 Not support websocket')
    42. }
    43. //将消息显示在网页上
    44. function setMessageInnerHTML(innerHTML) {
    45. var bitcoin = eval("("+innerHTML+")");
    46. document.getElementById('price').innerHTML = bitcoin.price;
    47. document.getElementById('total').innerHTML = bitcoin.total;
    48. }
    49. //关闭WebSocket连接
    50. function closeWebSocket() {
    51. websocket.close();
    52. }
    53. </script>
    54. </html>
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/601194
推荐阅读
相关标签
  

闽ICP备14008679号