摘要: 1.引入相关的依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-integration</artifactId></dependency><dependency> < 阅读全文
posted @ 2020-09-01 16:04 梦想在风中飘扬 阅读(3971) 评论(0) 推荐(0) 编辑
摘要: 1.引入相关的依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-integration</artifactId> </dependency> <dependency> 阅读全文
posted @ 2020-09-01 15:53 梦想在风中飘扬 阅读(6746) 评论(1) 推荐(0) 编辑
摘要: 1. 下载 从官网下载https://www.emqx.io/downloads#broker, 本文所用版本为 broker/v3.2.1/emqx-centos7-v3.2.1.zip linux下 下载: wget https://www.emqx.io/downloads/broker/v3 阅读全文
posted @ 2020-09-01 15:43 梦想在风中飘扬 阅读(9313) 评论(0) 推荐(0) 编辑
摘要: 1.前端如果用xlsx格式接收表格 后台用XSSFWorkbook workbook = new XSSFWorkbook();创建工作薄 response.setContentType("application/vnd.openxmlformats-officedocument.spreadshe 阅读全文
posted @ 2020-05-15 13:25 梦想在风中飘扬 阅读(6140) 评论(0) 推荐(0) 编辑
摘要: 数据库中加密后的内容 hex:可以用HEX()函数将一个字符串或数字转换为十六进制格式的字符串 unhex:把十六进制格式的字符串转化为原来的格式 备注: 以下 CloumnName为字段名,DESKey是des加密秘钥,tablename为表名,根据需要自行修改。 1、select 方法: 1 s 阅读全文
posted @ 2020-05-07 14:06 梦想在风中飘扬 阅读(5106) 评论(0) 推荐(0) 编辑
摘要: 传统的排序方法,比如select * from tableA order by id desc可以对英文、数字进行排序。但是遇到中文就没有办法了。这个时候需要以下的语句: select * from tableA order by convert(name using gbk) collate gb 阅读全文
posted @ 2020-03-27 12:58 梦想在风中飘扬 阅读(651) 评论(0) 推荐(0) 编辑