
前后交互
君之虞
这个作者很懒,什么都没留下…
展开
-
WebSocket简单使用
1.添加pom依赖 <!-- WebSocket完成订单通知 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency>2.代码原创 2022-01-11 19:58:39 · 255 阅读 · 1 评论 -
springBoot vue实现微信登录
后台引入需要的pom依赖包<dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5</version></dependency>写页面需要掉用的接口package com.de原创 2021-04-26 20:18:29 · 1346 阅读 · 5 评论 -
JAVA Vue实现文件下载
JAVA Vue实现文件下载后台controller @GetMapping("/DownloadWorkorderFile") @ResponseBody public void DownloadWorkorderFile(HttpServletRequest request, HttpServletResponse response, String filePath){ File file = new File(filePath); // 取得文原创 2020-11-27 16:09:32 · 867 阅读 · 0 评论 -
Springboot + vue 实现支付宝支付
Springboot + vue 实现支付宝支付一.引入alipay的pom依赖包 <!-- https://mvnrepository.com/artifact/com.alipay.sdk/alipay-sdk-java --> <dependency> <groupId>com.alipay.sdk</groupId> <artifactId>alipay-s原创 2020-11-12 10:55:47 · 4679 阅读 · 9 评论