摘要:
背景 HTTP 协议有一个缺陷:通信只能由客户端发起,HTTP 协议做不到服务器主动向客户端推送信息 WebSocket协议是基于TCP的一种新的网络协议。它实现了浏览器与服务器全双工(full-duplex)通信——允许服务器主动发送信息给客户端 举例来说,我们想要查询当前的排队情况,只能是页面轮 阅读全文
摘要:
//出发器 ALTER trigger [dbo].[trsx] on [dbo].[T1] for insert as BEGIN DECLARE @URL VARCHAR(1000) set @URL='http://192.168.1.xx/api/blade-meal/meal/menu/g 阅读全文
摘要:
websocket通信是很好玩的,也很有用的的通信方式,使用方式如下: 第一步由于springboot很好地集成了websocket,所以先在在pom.xml文件中引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artif 阅读全文
摘要:
需要加两个注解 @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern="yyyy-MM-dd",timezone="GMT+8") 阅读全文
摘要:
这个神奇的问题困扰了我半天,明明和我之前的写入Excel方法几乎一样,以前可以,这次怎么都不成功,都是只有表头没有数据。 网上也找不到解决方法,反复测试之后终于解决这个坑爹问题,记录一下。如果有人也遇到,可以参考。 直接说结论: 原因是我javabean上用到了@Data注解,并且里面的字段名是类似 阅读全文
摘要:
/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, 阅读全文
摘要:
引入 jar 包 <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>1.1.2-beta5</version> </dependency> public static voi 阅读全文
摘要:
/** * 分页查询 * @param entity * @return */ @GetMapping("getPageList") public R<IPage<ConsumptionMachineVO>> getPageList(@ApiIgnore @RequestParam Map<Stri 阅读全文
摘要:
package org.springblade.consumption.utils; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java. 阅读全文
摘要:
/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, 阅读全文