上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 74 下一页
摘要: 一、不加密数据库 sqlite数据库的使用步骤 1、引入sqlite import sqlite; 2、创建数据库 var db = sqlite("/intro1.db"); 在项目根目录下 3、创建表 if( not db.existsTable("工作日志表") db.exec( "CREAT 阅读全文
posted @ 2023-06-14 14:37 周文豪 阅读(863) 评论(3) 推荐(0) 编辑
摘要: 一、获取qq的smtp服务器的授权码 1、在QQ邮箱的网页版中,找到左上角的“设置”,点击它。 2、在设置界面里,找到“帐户”选项,点击它进入新界面。 3、在新界面中,找到POP3/SMTP服务,点击它右侧的开启。 4、获取授权码 二、代码 import com.smtp; io.open() va 阅读全文
posted @ 2023-06-13 11:45 周文豪 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 一、使用gdip截屏 1、截屏 import gdip.snap; mainForm.button2.oncommand = function(id,event){ //截屏 var bmp = gdip.snap(); // 保存 bmp.save("C:/Users/miracle/Deskto 阅读全文
posted @ 2023-06-13 10:09 周文豪 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 报错如下: 即: Exception in thread "Thread-47" tk.mybatis.mapper.MapperException: 无法获取实体类com.xxxxxxxx.xxx.entity.BusinessSupervisionData对应的表名! at tk.mybatis 阅读全文
posted @ 2023-05-29 14:56 周文豪 阅读(818) 评论(0) 推荐(0) 编辑
摘要: 一、websockt部署报错Error creating bean with name 'serverEndpointExporter' 启动后台报错: org.springframework.beans.factory.BeanCreationException: Error creating b 阅读全文
posted @ 2023-05-23 10:52 周文豪 阅读(496) 评论(1) 推荐(0) 编辑
摘要: 报错如下: 错误代码: searchList() { this.entity = {} this.edit = null let query = {} query.traceCode = this.code this.loading = true codeApi.queryTraceCode(que 阅读全文
posted @ 2023-05-19 19:08 周文豪 阅读(2541) 评论(0) 推荐(0) 编辑
摘要: 1、PageHelper.startPage(page,limit) 紧跟着的下一行必须是查询操作,才会对这个操作进行分页,否则分页失效。 2、总页数:pageInfo.getTotal() % limit == 0 ? pageInfo.getTotal() / limit : pageInfo. 阅读全文
posted @ 2023-04-27 15:31 周文豪 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 一、原子性的问题案例1 public class Demo3Volatile { public static void main(String[] args) throws InterruptedException { VolatileDemo demo = new VolatileDemo(); 阅读全文
posted @ 2023-04-23 18:05 周文豪 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 一、RocketMQ简介 Apache RocketMQ是一个采用Java语言开发的分布式的消息系统,由阿里巴巴团队开发,与2016年底贡献给Apache,成为了Apache的一个顶级项目。 在阿里内部,RocketMQ 很好地服务了 集 团大大小小上千个应用,在每年的双十一当天,更有不可思议的万亿 阅读全文
posted @ 2023-04-08 21:13 周文豪 阅读(720) 评论(0) 推荐(0) 编辑
摘要: springboot整合rocketmq,这样可以简化rocketmq的使用 创建一个springboot工程 一、导入依赖 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spr 阅读全文
posted @ 2023-04-08 21:07 周文豪 阅读(1158) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 74 下一页