当前位置:   article > 正文

【支付】——毕业设计中利用websocket做模拟支付_毕设怎么解决支付的问题

毕设怎么解决支付的问题

目录

前言

准备

Websocket服务器

实现

页面

演示


前言

最近在做公司项目时使用websocket在支付回调接口中刷新页面状态时,忽然想起今年毕业做毕业设计的时候,做的是一个电商系统,那么支付是必不可少的,当时还没有听说过websocket,去网上查阅资料,申请支付宝或者微信授权肯定是不现实的,还搞了很久的沙箱支付,现在想想真是傻,没有早一点接触到websocket,至于websocket是一门怎样的技术我们在此不做过多介绍,大家可自行查阅资料,我们这里只是简单写一个demo来做模拟支付,没什么太大的技术含量,但对于在校的想实现一个模拟支付的你确是雪中送炭!

准备

首先新建一个简单的springboot项目,当然了,普通的web项目也是可以的,这里敏捷开发

引入jar包,不是用maven的就只能下载jar进行导入了

  1. <!-- websocket包 -->
  2. <dependency>
  3. <groupId>org.springframework</groupId>
  4. <artifactId>spring-websocket</artifactId>
  5. </dependency>
  6. <!-- 二维码相关包 -->
  7. <dependency>
  8. <groupId>com.google.zxing</groupId>
  9. <artifactId>core</artifactId>
  10. <version>3.3.3</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>com.google.zxing</groupId>
  14. <artifactId>javase</artifactId>
  15. <version>3.3.3</version>
  16. </dependency>

下面两个jar包是二维码相关的jar包,二维码的工具类此文就不再贴出了,在 【二维码】——生成二维码并转为base64中有代码贴出。

Websocket服务器

WebSocketConfig:开启websocket配置

  1. /**
  2. * 开启WebSocket支持
  3. * @author zhengkai
  4. */
  5. @Configuration
  6. public class WebSocketConfig {
  7. @Bean
  8. public ServerEndpointExporter serverEndpointExporter() {
  9. return new ServerEndpointExporter();
  10. }
  11. }

WebsocketServer:webSocket服务器

  1. /** webSocket服务器
  2. * @author WangZhiJun
  3. */
  4. @ServerEndpoint("/ws/{sid}")
  5. @Component
  6. public class WebSocketServer {
  7. private static final Logger logger = LoggerFactory.getLogger(WebSocketServer.class);
  8. /**
  9. * 静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。
  10. */
  11. private static int onlineCount = 0;
  12. /**
  13. * concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。
  14. */
  15. private static CopyOnWriteArraySet<WebSocketServer> webSocketSet = new CopyOnWriteArraySet<WebSocketServer>();
  16. /*
  17. * 与某个客户端的连接会话,需要通过它来给客户端发送数据
  18. */
  19. private Session session;
  20. /**
  21. * 接收sid
  22. */
  23. private String sid="";
  24. /**
  25. * 连接建立成功调用的方法*/
  26. @OnOpen
  27. public void onOpen(Session session,@PathParam("sid") String sid) {
  28. this.session = session;
  29. //加入set中
  30. webSocketSet.add(this);
  31. //在线数加1
  32. addOnlineCount();
  33. logger.info("有新窗口开始监听:"+sid+",当前在线人数为" + getOnlineCount());
  34. this.sid=sid;
  35. try {
  36. sendMessage("连接成功");
  37. } catch (IOException e) {
  38. logger.error("websocket IO异常");
  39. }
  40. }
  41. /**
  42. * 连接关闭调用的方法
  43. */
  44. @OnClose
  45. public void onClose() {
  46. //从set中删除
  47. webSocketSet.remove(this);
  48. //在线数减1
  49. subOnlineCount();
  50. logger.info("有一连接关闭!当前在线人数为" + getOnlineCount());
  51. }
  52. /**
  53. * 收到客户端消息后调用的方法
  54. *
  55. * @param message 客户端发送过来的消息*/
  56. @OnMessage
  57. public void onMessage(String message, Session session) {
  58. logger.info("收到来自窗口"+sid+"的信息:"+message);
  59. //群发消息
  60. for (WebSocketServer item : webSocketSet) {
  61. try {
  62. item.sendMessage(message);
  63. } catch (IOException e) {
  64. e.printStackTrace();
  65. }
  66. }
  67. }
  68. /**
  69. *
  70. * @param session
  71. * @param error
  72. */
  73. @OnError
  74. public void onError(Session session, Throwable error) {
  75. logger.error("发生错误");
  76. error.printStackTrace();
  77. }
  78. /**
  79. * 实现服务器主动推送
  80. */
  81. public void sendMessage(String message) throws IOException {
  82. this.session.getBasicRemote().sendText(message);
  83. }
  84. /**
  85. * 群发自定义消息
  86. * */
  87. public static void sendInfo(String message,@PathParam("sid") String sid) throws IOException {
  88. logger.info("推送消息到窗口"+sid+",推送内容:"+message);
  89. for (WebSocketServer item : webSocketSet) {
  90. try {
  91. //这里可以设定只推送给这个sid的,为null则全部推送
  92. if(sid==null) {
  93. item.sendMessage(message);
  94. }else if(item.sid.equals(sid)){
  95. item.sendMessage(message);
  96. }
  97. } catch (IOException e) {
  98. continue;
  99. }
  100. }
  101. }
  102. public static synchronized int getOnlineCount() {
  103. return onlineCount;
  104. }
  105. public static synchronized void addOnlineCount() {
  106. WebSocketServer.onlineCount++;
  107. }
  108. public static synchronized void subOnlineCount() {
  109. WebSocketServer.onlineCount--;
  110. }
  111. }

实现

OrderController:项目中生成二维码的接口,将订单的信息存储在二维码中,二维码生成请查看【二维码】——生成二维码并转为base64

  1. /**
  2. * @author: WangZhiJun
  3. * @create: 2019-09-21 12:31
  4. **/
  5. @RestController
  6. @RequestMapping("/api/v1/order")
  7. public class OrderController {
  8. /**
  9. * 系统内生成支付二维码接口
  10. */
  11. @GetMapping(value = "/payOrder")
  12. public Result pay(@RequestParam String orderId) {
  13. Result result = new Result();
  14. String orderName = "XXSuperMarketPay";
  15. BigDecimal orderMoney = new BigDecimal(100);
  16. System.out.println("订单"+orderId+orderName+"需支付:"+orderMoney+"元");
  17. String wxPayUrl = "http://192.168.1.101:8080/wx/pay/pay?orderId="+orderId+"&orderName="+orderName+"&orderMoney="+orderMoney;
  18. System.out.println("生成支付二维码链接:"+wxPayUrl);
  19. result.setData(BarCodeUtils.getImage2Base64String(BarCodeUtils.generateBarcodeWithoutWhite(wxPayUrl, Color.BLACK)));
  20. return result;
  21. }
  22. /**
  23. * 结果实体类,这里为简化开发写为内部类,且只有一个data属性
  24. */
  25. class Result {
  26. String data;
  27. public void setData(String data) {
  28. this.data = data;
  29. }
  30. public String getData() {
  31. return data;
  32. }
  33. }
  34. }

WxPayController:这里模仿微信支付API接口,方便使用也放在此项目中

  1. /** 假设这是微信支付的接口
  2. * @author: WangZhiJun
  3. * @create: 2019-09-21 12:31
  4. **/
  5. @RestController
  6. @RequestMapping("/wx/pay")
  7. public class WxPayController {
  8. /**
  9. * 模仿微信支付API
  10. */
  11. @GetMapping(value = "/pay")
  12. public void paySuccess(@RequestParam String orderId,
  13. @RequestParam String orderMoney,
  14. @RequestParam String orderName) {
  15. System.out.println("订单"+orderId+orderName+"支付:"+orderMoney+"元");
  16. System.out.println("支付成功");
  17. //通知页面支付成功,实际是微信调用系统回调接口,在系统回调接口中进行通知
  18. try {
  19. WebSocketServer.sendInfo("支付成功",orderId);
  20. } catch (IOException e) {
  21. e.printStackTrace();
  22. }
  23. }
  24. }

页面

pay.html:简单开发并未做过多的样式

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>微信支付</title>
  6. </head>
  7. <script type="text/javascript" src="jquery.min.js"></script>
  8. <script>
  9. let orderId = getParameter("orderId");
  10. getUrl(orderId);
  11. let socket;
  12. if(typeof(WebSocket) == "undefined") {
  13. console.log("您的浏览器不支持WebSocket");
  14. }else{
  15. console.log("您的浏览器支持WebSocket");
  16. //实现化WebSocket对象,指定要连接的服务器地址与端口 建立连接${12123}
  17. socket = new WebSocket("ws://192.168.1.101:8080/ws/"+orderId);
  18. //打开事件
  19. socket.onopen = function() {
  20. console.log("Socket 已打开");
  21. //socket.send("这是来自客户端的消息" + location.href + new Date());
  22. };
  23. //获得消息事件
  24. socket.onmessage = function(msg) {
  25. console.log("接收到消息:"+msg.data)
  26. if (msg.data === '支付成功') {
  27. $("#div").html(msg.data);
  28. }
  29. //发现消息进入 开始处理前端触发逻辑
  30. };
  31. //关闭事件
  32. socket.onclose = function() {
  33. console.log("Socket已关闭");
  34. };
  35. //发生了错误事件
  36. socket.onerror = function() {
  37. alert("Socket发生了错误");
  38. //此时可以尝试刷新页面
  39. };
  40. }
  41. function getUrl(url) {
  42. $.ajax({
  43. url: `/api/v1/order/payOrder?orderId=`+url,
  44. type: "get",
  45. dataType: "json",
  46. success: function (result) {
  47. const img = document.getElementById("img");
  48. img.setAttribute("src","data:image/png;base64,"+result.data);
  49. },
  50. error: function (result) {
  51. alert(result);
  52. }
  53. });
  54. }
  55. function getParameter(param) {
  56. const query = window.location.search;
  57. const iLen = param.length;
  58. let iStart = query.indexOf(param);
  59. if (iStart === -1) {
  60. return "";
  61. }
  62. iStart += iLen + 1;
  63. let iEnd = query.indexOf("&", iStart);
  64. if (iEnd === -1) {
  65. return query.substring(iStart);
  66. }
  67. return query.substring(iStart, iEnd);
  68. }
  69. </script>
  70. <body>
  71. <div id="div">
  72. <img style="width:200px;height: 200px;" id="img" src=""/>
  73. </div>
  74. </body>
  75. </html>

其中的jquery.min.js可自行百度下载,资源很多

演示

1.首先访问页面,生成二维码并连接上socket

这个二维码看起来是比较复杂的,因为里面存储的链接比较长,如果对长链接转短链接感兴趣的可以看:【短链接】——自己实现一个短网址服务

2.用手机扫描二维码,这里要保证手机和电脑在同一个局域网内

注意:OrderController中的IP和pay.html中的IP要保持一致,且是电脑当前所在局域网的IP,电脑和手机连接同一WiFi或者手机给电脑开热点

最后放一下项目结构图:

大功告成!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/258434
推荐阅读
相关标签
  

闽ICP备14008679号