上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 46 下一页
摘要: Python介绍: 1. python3的所有常用语法 2. 面向对象编程思想 3. 运用模块进行编程 4. 游戏编程 5. 计算机仿真 跨平台,C语言编写 idle常用快捷键 1. alt+n/p 上一条/下一条语句 2. ctrl+n 新建窗口 ctrl+s保存 F5运行 3. alt + 3 阅读全文
posted @ 2021-07-15 20:23 白玉神驹 阅读(120) 评论(0) 推荐(0)
摘要: 1. 依赖 <!-- excel导出 start--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.16</version> </dependency> <depende 阅读全文
posted @ 2021-07-07 14:14 白玉神驹 阅读(664) 评论(0) 推荐(0)
摘要: 环境:win10、python3、没有加环境变量 1. 找到python安装目录,找到Scripts文件夹 2. 运行cmd命令,也可以在win+r运行cmd使用cd切换到这个目录 3. 安装该模块 pip install easygui 4. 在idle中导入easygui模块 5. 此时,模块自 阅读全文
posted @ 2021-06-30 15:24 白玉神驹 阅读(597) 评论(0) 推荐(0)
摘要: PushData<Menu[]> pushData = FastJSONUtil.parsePojo(message, PushData.class); List<Menu> menuList= JSONArray.parseArray(JSON.toJSONString(pushData.getD 阅读全文
posted @ 2021-06-29 17:37 白玉神驹 阅读(875) 评论(0) 推荐(0)
摘要: 1. 从消费者角度看首先排查是否订阅 topic 2. 是否扫包: 阅读全文
posted @ 2021-06-22 14:19 白玉神驹 阅读(641) 评论(0) 推荐(0)
摘要: 今天重新拉了项目,提交代码时候checkstyle项目: 原因:checkstyle插件版本问题 解决:修改版本8.1以下即可 checkstyle的使用: 阅读全文
posted @ 2021-06-22 10:42 白玉神驹 阅读(1910) 评论(0) 推荐(0)
摘要: [io.lettuce.core.protocol.ConnectionWatchdog:106]-- Reconnecting, last destination was 看了很多文章,最后已解决 在配置文件中配置指定包的 日志打印级别为error即: 我们项目用的是springcloud + n 阅读全文
posted @ 2021-06-01 10:38 白玉神驹 阅读(5070) 评论(0) 推荐(1)
摘要: 清理缓存并重启即可。 阅读全文
posted @ 2021-05-26 19:04 白玉神驹 阅读(278) 评论(0) 推荐(0)
摘要: 解决方案: @Scheduled(cron = "0 0 10 28-31 * ?")//每月最后一天10点执行 private void configureTasks(){ boolean flag = false; final Calendar calendar = Calendar.getIn 阅读全文
posted @ 2021-05-19 15:29 白玉神驹 阅读(3959) 评论(0) 推荐(0)
摘要: byte tByte = 2; String str = Integer.toBinaryString(tByte); String tString = Integer.toBinaryString((tByte & 0xFF) + 0x100).substring(1); System.out.p 阅读全文
posted @ 2021-05-12 14:26 白玉神驹 阅读(1465) 评论(0) 推荐(0)
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 46 下一页