上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 一、Linux 1.redis.conf文件 (1)修改daemonize 改为 daemonize yes(2)修改protected-mode yes 改为 protected-mode no(3)注释掉 #bin 127.0.0.1 2.设置开机自启动 在redis安装目录中找到/utils/ 阅读全文
posted @ 2021-12-10 16:48 幻月hah 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 一、什么是Spring三级缓存 第一级缓存:也叫单例池,存放已经经历了完整生命周期的Bean对象。 第二级缓存:存放早期暴露出来的Bean对象,实例化以后,就把对象放到这个Map中。(Bean可能只经过实例化,属性还未填充)。 第三级缓存:存放早期暴露的Bean的工厂。 注: 只有单例的bean会通 阅读全文
posted @ 2021-12-02 15:31 幻月hah 阅读(7058) 评论(0) 推荐(2) 编辑
摘要: 1.类 public class PollingDataDTO { private Integer pointId; private byte[] image; public Integer getPointId() { return pointId; } public void setPointI 阅读全文
posted @ 2020-02-21 16:34 幻月hah 阅读(2714) 评论(0) 推荐(0) 编辑
摘要: 1.添加自定义文件 preventReClick.js 2.在main.js中引用 3.实现方式。在按钮上添加v-preventReClick 阅读全文
posted @ 2019-12-30 14:46 幻月hah 阅读(16337) 评论(2) 推荐(1) 编辑
摘要: 对接支付平台时常使用 阅读全文
posted @ 2019-12-26 13:43 幻月hah 阅读(1619) 评论(0) 推荐(0) 编辑
摘要: import com.ax.service.pay.OrderService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.Application 阅读全文
posted @ 2019-12-24 10:00 幻月hah 阅读(1422) 评论(0) 推荐(0) 编辑
摘要: 1.前端 前端监听地址:ip:webSocket服务的端口号/webSocket/参数 mounted() {// 初始化WebSocket this.initWebSocket(); },methods: { // WebSocket相关 initWebSocket: function() { i 阅读全文
posted @ 2019-12-20 17:29 幻月hah 阅读(1421) 评论(2) 推荐(0) 编辑
摘要: 1、List<对象>根据对象的某个属性,提取重复 List<String> listDetail = list.stream(). collect(Collectors.groupingBy(item -> item.getIdCard(), Collectors.counting())) .ent 阅读全文
posted @ 2019-11-25 10:07 幻月hah 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 通过set的方式去重 针对String[]数组中第二各元素的去重 通过LinkedHashSet方式去重 对象中的某个元素去重,并提取该元素组成新的List 阅读全文
posted @ 2019-11-20 16:46 幻月hah 阅读(1084) 评论(0) 推荐(0) 编辑
摘要: 1.pom依赖 2.MultipartSupportConfig配置类 3.后端接口改造 关键字consumes = MULTIPART_FORM_DATA_VALUE 4.FeignClient接口改造 引入配置类MultipartSupportConfig,和接口注解consumes = MUL 阅读全文
posted @ 2019-11-19 11:51 幻月hah 阅读(2984) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页